Re: [chromium-dev] Command Line switches persisted in Preferences

2009-12-24 Thread Daniel Wagner-Hall
On Fri, Dec 25, 2009 at 2:53 AM, Peter Kasting wrote: > On Thu, Dec 24, 2009 at 3:29 PM, Evan Martin wrote: >> >> You must use switches for a pretty common pattern ("separate profile >> that goes through my work proxy") and I believe that's been wontfixed >> in the past, so I'm not entirely unsym

[chromium-dev] Re: Running applications in chrome with javascript

2009-10-16 Thread Daniel Wagner-Hall
NPAPI lets you execute native code: http://code.google.com/chrome/extensions/npapi.html, https://developer.mozilla.org/en/Plugins On Fri, Oct 16, 2009 at 8:16 AM, David wrote: > > nobody knows how to run an exe in chrome... is it possible? > thanks! > > On 13 oct, 17:35, David wrote: >> hi! >>

[chromium-dev] Server full?

2009-10-01 Thread Daniel
I can't seem to even do a gclient config with getting the error: svn: Can't find a temporary directory: Internal error Googling around seems to indicate that the server disk space is full. Is there an issue on the server? Or is there something I can do on my en

[chromium-dev] Native Client in Cross Compile

2009-10-01 Thread Daniel
I'm trying to cross compile chromium to ARM, but I'm getting errors in the native client code. ./native_client/src/include/elf.h:68:3: error: #error "NACL_TARGET_SUBARCH must be defined to be 32 or 64 It looks like I have to have the same build and target architectures in order to work properly.

[chromium-dev] Chromium isn't shutting down cleanly

2009-09-22 Thread Daniel Cowx
cent invocation. How can we cleanly quit the application in this case? Cheers, Daniel --~--~-~--~~~---~--~~ Chromium Developers mailing list: chromium-dev@googlegroups.com View archives, change email options, or unsubscribe: http://groups.google.com/group/chromium-dev -~--~~~~--~~--~--~---

[chromium-dev] Re: Is it possible to run Chromium in a Windows Job?

2009-09-17 Thread Daniel Cowx
ain broker process within a job. Thanks, Daniel On Sep 17, 5:58 pm, Daniel Cowx wrote: > I'd like to run chromium (the broker) within a Windows job so that I > can be notified when it exits. Does anyone know if this is possible? > My preliminary testing (with a job that imposes no

[chromium-dev] Is it possible to run Chromium in a Windows Job?

2009-09-17 Thread Daniel Cowx
I'd like to run chromium (the broker) within a Windows job so that I can be notified when it exits. Does anyone know if this is possible? My preliminary testing (with a job that imposes no limits whatsoever) is causing problems unless I use the "no-sandbox" or "single-process" flags; which is not

[chromium-dev] Re: How do you perform tab traversal?

2009-09-13 Thread Daniel Cowx
accelerator but is also intercepting > tab key messages to handle tab traversal. > > Something like: > AcceleratorHandler accelerator_handler; > MessageLoopForUI::current()->Run(&accelerator_handler); > should do the trick. > > Jay > > > > On Fri, Sep 11

[chromium-dev] How do you perform tab traversal?

2009-09-11 Thread Daniel Cowx
I'm trying to create a simple dialog box following the exam at http://dev.chromium.org/developers/design-documents/views-windowing. Note that I'm using views as in a standalone app (I'm not embedding this dialog in Chromium). I've added 2 views::Textfields to WindowView, but I can't seem to tab b

[chromium-dev] Re: Launching from Java

2009-09-02 Thread Daniel Wagner-Hall
manipulate (i.e. populate) file upload input elements from extension content scripts :) (Oh, and NPAPI support on non-windows platforms would be amazing, but I know that's coming :)) Thanks again On Wed, Sep 2, 2009 at 5:44 PM, John Grabowski wrote: > Daniel, I think our current behavior is corr

[chromium-dev] Re: Launching from Java

2009-09-02 Thread Daniel Wagner-Hall
On Tue, Sep 1, 2009 at 11:26 PM, Nico Weber wrote: > This is probably because of the launcher changes that Mark made. When > I start Chromium from a terminal, it opens in the background too. > `osascript -e 'tell app "Chromium" to activate'` works, though (it > opens chromium and makes it frontmos

[chromium-dev] Launching from Java

2009-09-01 Thread Daniel Wagner-Hall
Launching Chrome on Vista from Java using Runtime.getRuntime().exec(new String[] {path_to_chrome, some_flags, some_more_flags}) up until 4.0.202 seemed to work fine. In 4.0.203, the window opens, but is not given focus, and accordingly a background page doesn't believe Chrome has a Window. This

[chromium-dev] Re: [linux] plugin paths

2009-08-28 Thread Daniel Wagner-Hall
On Fri, Aug 28, 2009 at 7:01 PM, Evan Martin wrote: > > Right now our plugin loading code matches Firefox in the search path order. > 1  $MOZ_PLUGIN_PATH > 2  ~/.mozilla/plugins > 3  path_to_chrome_binary/plugins  <- analogous to Firefox > 4  /usr/lib/mozilla/plugins and related directories <- wha

[chromium-dev] Launching from Java on Mac

2009-08-25 Thread Daniel Wagner-Hall
either: a) Know why Chrome launches without a window, and know how to fix it? or b) (Less ideal) Know how to use AppleScript to traverse all running Chrome instances to activate them all? Thanks, Daniel --~--~-~--~~~---~--~~ Chromium Developers mailing list:

[chromium-dev] Is it possible to link Chromium to shared CRT on Windows (i.e. /MD instead of /MT)

2009-08-18 Thread Daniel Cowx
I'm incorporating Chromium into an existing that uses the shared CRT. To minimize footprint, I'd like to experiment with linking Chromium to the shared CRT as well. I've tried changing RuntimeLibrary in common.gypi, but I'm getting numerous linker errors (I think b/c of tcmalloc's dependence on st

[chromium-dev] Do we have any existing code for reading/writing INI files?

2009-08-10 Thread Daniel Cowx
Just wondering if there's any code kicking around somewhere in the codebase for reading/writing INI files? --~--~-~--~~~---~--~~ Chromium Developers mailing list: chromium-dev@googlegroups.com View archives, change email options, or unsubscribe: http://groups.

[chromium-dev] Re: [chromium-extensions] Re: Where did contentWindow go?

2009-08-07 Thread Daniel Wagner-Hall
On Fri, Jul 31, 2009 at 5:57 PM, Aaron Boodman wrote: > > On Fri, Jul 31, 2009 at 5:14 PM, Daniel Wagner-Hall wrote: >> I suppose only allowing contentWindow.eval and not any other interaction >> with the page's JS would significantly restrict the ability to take over &g

[chromium-dev] Re: Access to window handles from plugins?

2009-07-17 Thread Daniel Wagner-Hall
I can happily get the plugin's window handle using standard NPAPI calls, I'm trying to get the window handle of arbitrary tabs (and indeed frames) which my extension has loaded Specifically, I am opening pages, at the moment using window.open in the background page (though this may change to some

[chromium-dev] Access to window handles from plugins?

2009-07-17 Thread Daniel Wagner-Hall
tions library for sending keys/clicks/etc at the OS level, which requires a window handle to the window containing the element to do its thing. This library is shared between all the drivers for a particular platform (at the moment, only Windows, but X support is coming soon). Thanks, Daniel Wagner

[chromium-dev] Re: Is there an option to block file downloads in Chromium?

2009-07-03 Thread Daniel Cowx
Yeah, it would be an administrative feature for a version of Chromium that is being developed for Library use. The library admins don't want users to be able to download files. On Jul 3, 10:26 am, Peter Kasting wrote: > On Fri, Jul 3, 2009 at 10:22 AM, Daniel Cowx wrote: > >

[chromium-dev] Is there an option to block file downloads in Chromium?

2009-07-03 Thread Daniel Cowx
If not, where would be the most logical place to add this functionality? --~--~-~--~~~---~--~~ Chromium Developers mailing list: chromium-dev@googlegroups.com View archives, change email options, or unsubscribe: http://groups.google.com/group/chromium-dev -~--

[chromium-dev] Re: How do I *undefine* a define in GYP?

2009-06-27 Thread Daniel Cowx
Awesome. Thanks Brad! On Jun 27, 1:52 pm, Bradley Nelson wrote: > You can undefine items with: > 'defines!: [ >     'WIN32_LEAN_AND_MEAN', > ], > > -BradN > > > > On Sat, Jun 27, 2009 at 1:47 PM, Daniel Cowx wrote: > > > Okay, I&#

[chromium-dev] Re: How do I *undefine* a define in GYP?

2009-06-27 Thread Daniel Cowx
ining a previous define. I'd prefer if there was a way to remove the inclusion of /D WIN32_LEAN_AND_MEAN from common.gypi when my project is being generated. Is this possible? On Jun 27, 1:26 pm, Daniel Cowx wrote: > I have a third_party project that assumes that WIN32_LEAN_AND_MEAN is >

[chromium-dev] How do I *undefine* a define in GYP?

2009-06-27 Thread Daniel Cowx
I have a third_party project that assumes that WIN32_LEAN_AND_MEAN is *not* defined. Unfortunately, common.gypi defines it, so I'm getting lots of compiler errors that I dont particularly want to track down. What's teh best way to either a) undefine WIN32_LEAN_AND_MEAN from common.gypi, or b) ensu

[chromium-dev] Re: Should GYP files be UTF8 Encoded?

2009-06-27 Thread Daniel Cowx
No use case. I was just creating a new GYP file and wanted to know what encoding to save the file as...that's all :-) On Jun 26, 10:52 pm, Bradley Nelson wrote: > The intention was ascii AFAIK. Unless someone has a use case? > -BradN > > > > On Fri, Jun 26, 2009 at 3:05

[chromium-dev] Re: Should GYP files be UTF8 Encoded?

2009-06-26 Thread Daniel Cowx
Not that I'm aware of. Just wanted to confirm that intention is ASCII for now unless need arises. On Jun 26, 2:18 pm, Dan Kegel wrote: > On Fri, Jun 26, 2009 at 1:50 PM, Daniel Cowx wrote: > > Should GYP files be UTF8 Encoded? > > We can probably get away with ascii for

[chromium-dev] Should GYP files be UTF8 Encoded?

2009-06-26 Thread Daniel Cowx
Should GYP files be UTF8 Encoded? --~--~-~--~~~---~--~~ Chromium Developers mailing list: chromium-dev@googlegroups.com View archives, change email options, or unsubscribe: http://groups.google.com/group/chromium-dev -~--~~~~--~~---

[chromium-dev] Re: How do you do an if-else statement in GYP?

2009-06-24 Thread Daniel Cowx
Thanks for the prompt reply Brad. Cheers! On Jun 24, 2:52 pm, Bradley Nelson wrote: > Hi Daniel: > Currently you'd have to have another whole conditional inside: > > 'conditions': [ >  ['my_variable=="Blort"', { >    # path A

[chromium-dev] How do you do an if-else statement in GYP?

2009-06-24 Thread Daniel Cowx
I'd like to be able to test 'my_variable' for 'Blort' and 'Blat', but if neither of these are true, then I'd like to execute a default. The problem is that with the syntax below, if 'my_variable' is 'Blort', then both path A and C will be executed; which is wrong since each of these paths should b

[chromium-dev] Is it possible to do a gclient sync without running hooks?

2009-06-23 Thread Daniel Cowx
When I run "gclient sync", it automatically runs the hooks; which causes various non-versioned files to get generated within my tree (most notably *.vcproj and *.sln files, but there may be others). I'd like to be able to do a sync *without* generating any files (i.e. so that if I do a "svn status

[chromium-dev] Re: changing chrome_exe to chrome, converting chrome.exe to gyp

2009-06-18 Thread Daniel Cowx
I'm also noticing that every time I do a build/debug, it's rebuilding a LOT of the libraries even though nothing has changed. On Jun 18, 12:43 pm, Daniel Cowx wrote: > I notice that when I load chrome.sln and do a build, not all the > dependencies are built anymore. For ins

[chromium-dev] Re: changing chrome_exe to chrome, converting chrome.exe to gyp

2009-06-18 Thread Daniel Cowx
I notice that when I load chrome.sln and do a build, not all the dependencies are built anymore. For instance, theme_dll isn't built (not listed in the proj deps), is this expected? On Jun 18, 12:38 am, Steven Knight wrote: > Okay, it looks like this change is sticking, at least until someone >

[chromium-dev] Is it possible to create branches?

2009-06-16 Thread Daniel Cowx
x27;d really like to be able to do commits of my incremental work, but without a sep branch to fiddle around with, how can I accomplish this? All input and feedback welcome. Cheers, Daniel --~--~-~--~~~---~--~~ Chromium Developers mailing list: chromium-dev@go

[chromium-dev] How do you generate the VS project files from GYP without gclient?

2009-06-16 Thread Daniel Cowx
I know that you typically generate the project files via "gclient runhooks --force", but I'm curious to know how to generate the project files via python directly, instead of via gclient. --~--~-~--~~~---~--~~ Chromium Developers mailing list: chromium-dev@googlegro

[chromium-dev] Re: How to change the cursor smoothly for a view

2009-06-15 Thread Daniel Cowx
Changing the default class cursor to NULL in widget_win.cc makes not difference that I can see. Any other thoughts? On Jun 13, 4:00 pm, "Ben Goodger (Google)" wrote: > No problem. Get well soon! > > > > On Sat, Jun 13, 2009 at 3:55 PM, Daniel Cowx wrote: > >

[chromium-dev] Re: How to change the cursor smoothly for a view

2009-06-13 Thread Daniel Cowx
Sure, I'll take care of this. It'll have to wait a few days though as I broke my index finger and I'm having a bit of a time typing right now. Hope that's cool. Cheers, Daniel On Jun 11, 2:55 pm, "Ben Goodger (Google)" wrote: > It's in the class registrat

[chromium-dev] Re: How to change the cursor smoothly for a view

2009-06-11 Thread Daniel Cowx
eport and submit this change for review. Cheers, Daniel On Jun 10, 10:08 pm, Daniel Cowx wrote: > Actually, I see this flickering on a plain old view::Link as well. You > can see it if you move the cursor back and forth on the "open > source software" link on the Chromium About

[chromium-dev] Re: How to change the cursor smoothly for a view

2009-06-10 Thread Daniel Cowx
Win. > > I would be slightly surprised though... we use GetCursorForPoint in a > couple of places and haven't had issues... > > -Ben > > > > On Wed, Jun 10, 2009 at 9:39 PM, Daniel Cowx wrote: > > > Hi Ben, > > > I'm getting the flickering even wh

[chromium-dev] Re: How to change the cursor smoothly for a view

2009-06-10 Thread Daniel Cowx
eCursor calls GetViewForPoint which ends up asking both > the label and the text and the container view for the cursor, so its > constantly getting reset as you move your mouse over it. > > -Ben > > > > On Wed, Jun 10, 2009 at 8:55 PM, Daniel Cowx wrote: > > > I've g

[chromium-dev] How to change the cursor smoothly for a view

2009-06-10 Thread Daniel Cowx
ly based on the current cursor coordinates within the view. How can I implement the desired functionality without this flickering? I've also tried overriding view::OnMouseEntered() and view::OnMouseExited() and manually calling ::SetCursor() to no avail. Can someone please shed some li

[chromium-dev] How do you create a frameless window via views?

2009-06-10 Thread Daniel Cowx
NDOW); Init(NULL, view_->bounds()); ... But I get an assertion in the call to Init() b/c a non client view is expected. How do I solve this? Cheers, Daniel --~--~-~--~~~---~--~~ Chromium Developers mailing list: chromium-dev@googlegroups.com View archives, ch

[chromium-dev] Re: Use of User Macros for RelativePath in vcproj files

2009-06-09 Thread Daniel Cowx
I figured it out and thought I'd share with others. Turns out that you have to restart Visual Studio and reload the whole solution for it to pickup the correct paths when you're using a macro. Cheers, Daniel On Jun 9, 10:58 pm, Daniel Cowx wrote: > I notice that some of our

[chromium-dev] Use of User Macros for RelativePath in vcproj files

2009-06-09 Thread Daniel Cowx
I notice that some of our projects (e.g. chrome_resources) reference GRIT generated files via the RelativePath entry in the *.vcproj file via the user macro $(OutDir). Can someone please provide insight into how this was made to work? I've tried this quite a few times to no avail. Whenever I try

[chromium-dev] Re: Is there any way to change the default (i.e. default.dll) theme DLL?

2009-06-09 Thread Daniel Cowx
objections to including a default param in the call to ResourceBundle::LoadThemeResources() that causes default.dll to be loaded by default? Alternatively, since default params are frowned upon, I could provide a wrapper function in ResourceBundle to accomplish the same end. -Daniel On Jun 9, 9:36

[chromium-dev] Is there any way to change the default (i.e. default.dll) theme DLL?

2009-06-09 Thread Daniel Cowx
ResourceBundle::LoadThemeResources() always loads default.dll from DIR_THEMES. Other than overriding DIR_THEMES via the PathService, is there another way to change the name of the DLL? --~--~-~--~~~---~--~~ Chromium Developers mailing list: chromium-dev@googlegroups

[chromium-dev] Difference between TestShell and Chromium

2009-06-09 Thread Daniel Dreiberg
Hi I understand TestShell is a test harness for running layout tests and a Chromium is a multi-process web browser. And I understand Chromium's browser thread does the I/O for each renderer pr ocess (using Webkit +V8). My question is much code in TestShell are 'common' with Chromium. I think th

[chromium-dev] HTTP POST via net package?

2009-06-08 Thread Daniel Cowx
How can I upload multipart form data (including a file) via HTTP POST? Is there something already written in the net package (or elsewhere) for this task? If so, can someone please point me to what class to use. Thanks, Daniel --~--~-~--~~~---~--~~ Chromium

[chromium-dev] Need help in using XMLSerializer to dump the root node of document

2009-06-04 Thread Daniel Dreiberg
Hi, In chromium, I am trying to use WebCore's XMLSerializer to dump the root node of document. I am able to pass all the necessary parameters to the XMLSerializer, but my question is XMLSerializer::serializeToString() return a Webkit's String, instead of chromium's String, and how can I write that

[chromium-dev] Where is the code to pop up dialog

2009-06-03 Thread Daniel Dreiberg
Hi, I am looking for pointers tor the code which pop up dialog in chromium? e.g. JavaScript alert dialog or confirm dialog? I am specifically looking how that is done on MacOS. Thank you. --~--~-~--~~~---~--~~ Chromium Developers mailing list: chromium-dev@googlegr

[chromium-dev] Where is the code which chromium display the loading status

2009-06-01 Thread Daniel Dreiberg
Hi, When i load chromium on MacOS, it has 'Waiting...', 'Contacting..' status displayed at the bottom of the browser. Can you please tell me where is the code which display that? Thank you. --~--~-~--~~~---~--~~ Chromium Developers mailing list: chromium-dev@google

[chromium-dev] How to get a pointer/reference to HTML Document from a pointer to WebView

2009-05-30 Thread Daniel Dreiberg
Hi, If I have a pointer to WebView, how can I get a pointer/reference to HTML Document of the Loaded Document? Thank you. --~--~-~--~~~---~--~~ Chromium Developers mailing list: chromium-dev@googlegroups.com View archives, change email options, or unsubscribe:

[chromium-dev] How to debug Chrome on MacOS

2009-05-28 Thread Daniel Dreiberg
Hi, I have get chrome source and I have opened the 'chrome.xcode project'. I am able to compile it successfully. And when I click 'Build and Go (Debug)' I see the status bar said 'GDB: Loading program' and then 'GDB: Running' and all the sudden I see 'GDB: Interrupted' And I never see chrome is lau

[chromium-dev] Question about Multi-process Architecture document

2009-05-27 Thread Daniel Dreiberg
I am reading the Chroimum Multi-process Architecture document. http://dev.chromium.org/developers/design-documents/multi-process-architecture In the architecture diagram, it has component like RenderProcess RenderProcessHost RenderViewHost RenderView But when i do a 'find' to look for the code f

[chromium-dev] Chromium 1 process per tab architecture

2009-05-27 Thread Daniel Dreiberg
Hi, My understanding is chromium has 1 process per tab architecture. My question is does chromium has the capability/functionality to: 1. if a process/tab runs away (in an infinite loop and taking all cpu) or hangs (block waiting for something for some reason, chromium will kill that process/tab? 2

[chromium-dev] Which is the Xcode project for chromium on MacOS

2009-05-26 Thread Daniel Dreiberg
Hi, Can you please tell me where i can find Xcode project for chromium on MacOS? I tried $chromium_src_root/src/chrome/chrome.xcodeproj, but that does not seem to have html parser code, javascript engine code, css engine code. I would like to 'open an URL' and debug code in html parser code or java

[chromium-dev] Tool to dump out the render tree for chromium

2009-05-23 Thread Daniel Dreiberg
Hi, Is there any tool to dump out the render tree for chromium? I would like to pass an url (e.g. www.google.com), it dumps out the render tree after that page is loaded (JS is executed)? Thank you for any pointers. --~--~-~--~~~---~--~~ Chromium Developers mailing

[chromium-dev] How can I run TestShell in Xcode on MacOS

2009-04-29 Thread daniel
Hi, How can I run TestShell in Xcode on MacOS? Which xcode project I should use? I find these: ./src/base/base.xcodeproj ./src/breakpad/src/client/mac/Breakpad.xcodeproj ./src/breakpad/src/client/mac/handler/minidump_test.xcodeproj ./src/breakpad/src/tools/mac/crash_report/crash_report.xcodeproj

[chromium-dev] Re: [chrome-team] Design-Doc: Automatic Spelling Correction

2009-03-25 Thread Daniel A. White
Just a thought, why not for the Mac version of Chrome/Chromium, use the built in Mac OS X spell check services? Daniel A. White On Wed, Mar 25, 2009 at 1:45 PM, Nick Baum wrote: > Hi Peter, > I'll let Sid chime in on the details of the implementation, but it's > definite

[chromium-dev] Re: Chrome was on Jeopardy tonight

2009-03-12 Thread Daniel A. White
Well in the category they really tried mixing DirectX and having some way of explaining "What is ActiveX?" that I didn't get. Daniel A. White On Thu, Mar 12, 2009 at 9:04 PM, Peter Kasting wrote: > On Thu, Mar 12, 2009 at 6:02 PM, Daniel A. White > wrote: > >> I

[chromium-dev] Re: Chrome was on Jeopardy tonight

2009-03-12 Thread Daniel A. White
If I remember it was like "This Internet giant's Web browser has Incognito which allows users to surf anonymously". The first guy to ring in said "What is Yahoo!?" Sorry. Daniel A. White On Thu, Mar 12, 2009 at 8:40 PM, Peter Kasting wrote: > On Thu, Mar 12, 2009

[chromium-dev] Chrome was on Jeopardy tonight

2009-03-12 Thread Daniel A. White
Thought I let you guys know. Amazing! Daniel A. White --~--~-~--~~~---~--~~ Chromium Developers mailing list: chromium-dev@googlegroups.com View archives, change email options, or unsubscribe: http://groups.google.com/group/chromium-dev -~--~~~~--~~--~--~---

[chromium-dev] Sandbox Policy and MessageBox

2009-03-11 Thread Daniel
Hi guys, Is there any way to display a message box within an sandboxed process without adding JOB_OBJECT_UILIMIT_HANDLES to sandbox::TargetPolicy::SetJobLevel()? The JOB_OBJECT_UILIMIT_HANDLES ui exception is a pretty broad sword for just displaying a popup dialog. Ideally, I'd like to be able to

[chromium-dev] Inline PDF Support

2009-03-03 Thread Daniel
Hi guys, Are there any plans to support the viewing of PDF documents (inline/ natively) within chromium without the need for an external app/plugin like acrobat...i.e. kinda like how Safari does it on mac? alternatively, some manner of first converting them to PNG/HTML/etc? --~--~-~--~---

[chromium-dev] What is the app\theme\chromium\chromium.icns file used for?

2009-02-17 Thread Daniel
Does anyone know what is the app\theme\chromium\chromium.icns file is used for? --~--~-~--~~~---~--~~ Chromium Developers mailing list: chromium-dev@googlegroups.com View archives, change email options, or unsubscribe: http://groups.google.com/group/chromium-d

[chromium-dev] How to obtain HWND of MessageLoop?

2009-01-30 Thread Daniel
I need to obtain the HWND of the message window for a thread so that I can call ::RegisterShellHookWindow() to get shell notifications via MessageLoopForUI::Observer. Unfortunately, MessagePumpForUI::message_hwnd_ is private. Any suggestions on how I can obtain it? I was thinking I could call Fin

[chromium-dev] Do we have any class diagrams?

2009-01-29 Thread Daniel
Is there a class diagram anywhere that I can take a peak at? I'm trying to get a better grasp of the views namespace in particular. --~--~-~--~~~---~--~~ Chromium Developers mailing list: chromium-dev@googlegroups.com View archives, change email options, or unsubsc

[chromium-dev] How to speed up building of chrome.dll?

2009-01-25 Thread Daniel
How can I speed up building of chrome? I'm fiddling around with some stuff and I find it *extremely* annoying that if i change anything, I have to rebuild the entire chrome.dll; which takes about 3-5 minutes for compilation and linking. This is a real pain in the butt and I find it difficult to be

[chromium-dev] Default line ending CR LF, CR, or LF???

2008-12-29 Thread Daniel
What should be used for the default line endings? DOS (CR LF), MAC (CR) or UNIX (LF) style? I notice that most files seem to use UNIX (LF), but I want to make sure that this is the expected line endings format. Thanks, Daniel --~--~-~--~~~---~--~~ Chromium

[chromium-dev] Help needed adding a new image resource

2008-12-28 Thread Daniel
ly as described above, or are there scripts that I should be using? Thanks, Daniel --~--~-~--~~~---~--~~ Chromium Developers mailing list: chromium-dev@googlegroups.com View archives, change email options, or unsubscribe: http://groups.google.com/group/chromium-dev -~--~~~~--~~--~--~---

[chromium-dev] Re: Bookmark Added! GUI redesign ideas

2008-12-09 Thread Daniel A. White
I think 1A is more universally correct. Daniel A. White On Tue, Dec 9, 2008 at 8:29 PM, Simon B. <[EMAIL PROTECTED]> wrote: > > The Bookmark bubble doesn't suit me, so I've made some redesign > suggestions: > http://sites.google.com/site/chromiumdev/bookmark-added

[chromium-dev] Re: UI proposal: Open link in new foreground tab

2008-12-07 Thread Daniel A. White
The standard it Control+Click. Daniel A. White On Sun, Dec 7, 2008 at 4:31 PM, Ojan Vafai <[EMAIL PROTECTED]> wrote: > Similarly , we could add a standard keyboard shortcut for open in a new > foreground tab, e.g. shift+click opens in a new foreground tab. > > > On Sun, D

[chromium-dev] vsprop errors?

2008-12-04 Thread Daniel A. White
Hey all. When I try to open the solutions in vs2005 standard, i get some vsprop errors. Any ideas? Daniel A. White --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Chromium-dev" group. To post to this g

[chromium-dev] Re: MathML and math accessibility as a Chromium plugin

2008-12-02 Thread Daniel A. White
I know this might sound off topic, but why don't you code a JavaScript parser? It could be easily ported to other browsers. Daniel A. White On Tue, Dec 2, 2008 at 2:54 PM, PaulTopping <[EMAIL PROTECTED]> wrote: > > Actually, our MathPlayer implementation in Internet Explorer

[chromium-dev] Re: chromium embedded framework now available

2008-12-02 Thread Daniel A. White
Hey Marshall. Thanks for all your hard work!!! I will be working on an MFC wrapper as soon as I get Chromium redownloaded and built. I will be happy to submit it to the community once finished! Daniel A. White On Tue, Dec 2, 2008 at 2:05 PM, Marshall Greenblatt <[EMAIL PROTECTED]>

[chromium-dev] Re: chromium embedded framework now available

2008-12-02 Thread Daniel A. White
Thanks Marshall. I will be trying this out! Daniel A. White On Tue, Dec 2, 2008 at 11:04 AM, Marshall Greenblatt <[EMAIL PROTECTED] > wrote: > Hi All, > > The chromium embedded framework (CEF) project is now available for download > via svn: > > http://code.googl

[chromium-dev] Re: chrome browser control for linux/osx

2008-11-26 Thread Daniel A. White
Awesome. I can't wait. Where will this repository be hosted? Daniel A. White On Wed, Nov 26, 2008 at 11:21 AM, Marshall Greenblatt < [EMAIL PROTECTED]> wrote: > You'll probably want to wait for the initial implementation (perhaps coming > this weekend) since I've

[chromium-dev] Re: chrome browser control for linux/osx

2008-11-26 Thread Daniel A. White
Man, I am itching to help start coding this... any objections? On Nov 25, 4:04 pm, "Marshall Greenblatt" <[EMAIL PROTECTED]> wrote: > Cool, it sounds like the embedded browser spaces on linux and osx are well > accounted for.  For the time being I'll continue with an os-agnostic > approach becaus

[chromium-dev] Re: chrome browser control for linux/osx

2008-11-25 Thread Daniel A. White
Wow thats awesome. Thanks a billion. Daniel A. White On Tue, Nov 25, 2008 at 4:04 PM, Marshall Greenblatt <[EMAIL PROTECTED] > wrote: > Cool, it sounds like the embedded browser spaces on linux and osx are well > accounted for. For the time being I'll continue with an os-ag

[chromium-dev] Re: chrome browser control for linux/osx

2008-11-25 Thread Daniel A. White
Are there any good visual studio plugins that walk the includes tree? I am thinking to see what is all required for the test_shell application and pull it apart so that I can try to start prototyping something and use it for myself. hehe. --~--~-~--~~~---~--~~ You

[chromium-dev] Re: chrome browser control for linux/osx

2008-11-24 Thread Daniel A. White
Also, I do not know if it is possible, but it would be worth while to see if we can hook into V8 from the browser model and add our own functions. Daniel A. White On Mon, Nov 24, 2008 at 12:06 PM, Daniel A. White <[EMAIL PROTECTED]>wrote: > I think Marshall has the right idea. Other

[chromium-dev] Re: chrome browser control for linux/osx

2008-11-24 Thread Daniel A. White
I think Marshall has the right idea. Other wrappers of his concept besides the ActiveX could be one for MFC - which I could take advantage of. Daniel A. White On Mon, Nov 24, 2008 at 12:04 PM, Marshall Greenblatt < [EMAIL PROTECTED]> wrote: > The framework that I envision for embedde

[chromium-dev] Re: Thread for building Visual Studio 2008 SP1

2008-11-23 Thread Daniel A. White
This WILL fix the build for the webkit.sln. My test_shell built properly! Woo! Now time to extract stuff to make it work with my app! On Nov 23, 7:08 pm, "Daniel A. White" <[EMAIL PROTECTED]> wrote: > V8Bindings need this too. > > Daniel A. White > >

[chromium-dev] Re: Thread for building Visual Studio 2008 SP1

2008-11-23 Thread Daniel A. White
V8Bindings need this too. Daniel A. White On Sun, Nov 23, 2008 at 6:41 PM, thetrueaplus <[EMAIL PROTECTED]>wrote: > > As I am now rebuilding WebCore, things seem to be better. No errors. > Maybe this should be put into the Scons configuration. > > On Nov 23, 6:33 pm,

[chromium-dev] Re: Simple Browser / Rendering Engine

2008-11-22 Thread Daniel
Does "test_shell" use V8 or JavaScriptCore? On Nov 22, 1:29 pm, Peter Kasting <[EMAIL PROTECTED]> wrote: > On Sat, Nov 22, 2008 at 11:17 AM, Daniel <[EMAIL PROTECTED]> wrote: > > Basically, I'd like to create a build of chromium that has all the > > b

[chromium-dev] Simple Browser / Rendering Engine

2008-11-22 Thread Daniel
s such a build configuration already exist somewhere? If not, any advice on starting? Would it be better to work downwards from the main chromium project (peeling functionality away) or work upwards from some test harness that may already exist somewhere (and add functionality

[chromium-dev] Re: Quick and dirty chrome embedding test

2008-11-16 Thread Daniel A. White
Well they are already using some MPL code. http://code.google.com/chromium/terms.html :P An idea from me - allow styling of ui components. Hehe. Daniel A. White On Sun, Nov 16, 2008 at 5:20 PM, Marshall Greenblatt <[EMAIL PROTECTED] > wrote: > On Sun, Nov 16, 2008 at 5:15 PM,

[chromium-dev] Re: Quick and dirty chrome embedding test

2008-11-15 Thread Daniel A. White
I am excited to see this going forth. It will really open up developers options once this is fully operational. Thanks! Daniel A. White On Sat, Nov 15, 2008 at 6:55 PM, Marshall Greenblatt <[EMAIL PROTECTED] > wrote: > Hi M-A, > > Thank you for your questions :-). > > On

[chromium-dev] Re: Embedding Chromium

2008-11-14 Thread Daniel A. White
I just found this Chromium rendering engine called Awesomium. Daniel A. White On Fri, Nov 14, 2008 at 11:26 AM, Marshall Greenblatt < [EMAIL PROTECTED]> wrote: > Hi Amanda, > > On Fri, Nov 14, 2008 at 10:56 AM, Amanda Walker <[EMAIL PROTECTED]>wrote: > >> >

Re: Compiling with Visual Studio 2008

2008-09-05 Thread Daniel Hagen
I understand the ATL limitations, and the workarounds for them. I'm tempted to grab 2005 EE and try out the ATL workarounds just to prove it works before I dive into 2008. Daniel On Fri, Sep 5, 2008 at 5:01 PM, CR <[EMAIL PROTECTED]> wrote: > > It won't work in the express

Re: Compiling with Visual Studio 2008

2008-09-05 Thread Daniel H
Do you think this will work with VS2008 SP1 Express Edition? Have you made a patch version yet? I'd patch things myself, but I only have Express Edition, so I wouldn't be able to isolate for which reason things needed changed. Thanks! -Daniel On Sep 5, 2:20 pm, CR <[EMAIL PROT