[chromium-dev] Login name auto-fill code

2009-06-12 Thread Lucius Fox
Hi, Can you please tell me where is the code for 'auto-fill' login name for Gmail on MacOS X? Thank you. --~--~-~--~~~---~--~~ Chromium Developers mailing list: chromium-dev@googlegroups.com View archives, change email options, or unsubscribe:

[chromium-dev] Re: Login name auto-fill code

2009-06-12 Thread Lucius Fox
On Fri, Jun 12, 2009 at 10:00 AM, Stuart Morganstuartmor...@chromium.org wrote: On Fri, Jun 12, 2009 at 7:46 AM, Lucius Foxlucius.fo...@gmail.com wrote: Can you please tell me where is the code for 'auto-fill' login name for Gmail on MacOS X? What part specifically? There are a number of

[chromium-dev] How does V8 cache for compiled script being used

2009-06-05 Thread Lucius Fox
handle 'Back' functionality To: Peter Kasting pkast...@chromium.org Cc: Lucius Fox lucius.fo...@gmail.com, chromium-dev@googlegroups.com 2. Does chromium cache JavaScript native code (since it compiles JS files to native code)? Not generally, to my knowledge. V8 does have a cache

[chromium-dev] Re: Is there any way to profile chromium on MacOS?

2009-06-02 Thread Lucius Fox
I can build and debug TestShell project. But can you please tell me how to attach appropriate renderer with Shark? What is an appropriate renderer? On Mon, May 25, 2009 at 7:37 AM, Mike Pinkerton pinker...@chromium.org wrote: You can always attach to the appropriate renderer with Shark. Does

[chromium-dev] How does chromium load font during page rendering

2009-06-01 Thread Lucius Fox
Hi, Can you please point me to the code (for mac os) where chromium load font during page rendering? for example, chromium needs to load the font matrix for the font specified by css/html for text to measure how much of it can fit on 1 line and wrap the rest for the next line? Thank you.

[chromium-dev] How does chromium handle 'Back' functionality

2009-06-01 Thread Lucius Fox
Hi, Lets say i have 1 tab and I load 3 sites. 1. www.cnn.com 2. www.yahoo.com 3. www.aol.com -- the current page What happens when users click 'Back'? does chromium keep www.yahoo.com/www.cnn.com in memory? if yes, how many pages it can keep in memory? Or chromium just reload the page from

[chromium-dev] Re: How does chromium handle 'Back' functionality

2009-06-01 Thread Lucius Fox
be quickly restored when navigating back or forward.  Such browsers behave similarly to Chrome when the page you are navigating back to is not found in the page cache. -Darin On Mon, Jun 1, 2009 at 2:23 PM, Lucius Fox lucius.fo...@gmail.com wrote: Hi, Lets say i have 1 tab and I load 3

[chromium-dev] Historgram in V8 compilation cache

2009-05-29 Thread Lucius Fox
Hi, In V8 compilation cache code v8/src/compilation-cache.cc, it create a histogram. StatsTable::CreateHistogram Can you please tell me what is that for? Is it for debugging/profiling purpose? Or it is for JIT compilation? Thank you. --~--~-~--~~~---~--~~

[chromium-dev] Re: Where is the integration point betwee chromium and V8

2009-05-28 Thread Lucius Fox
::ComplieEval. Note that if you are using Chromium for this you need to take the multiprocess architecture into account either by using the --single-process switch to turn it off or by attaching to the process you will actually like to debug. Regards, Søren On Thu, May 28, 2009 at 07:52, Lucius

[chromium-dev] Re: Where is the integration point betwee chromium and V8

2009-05-28 Thread Lucius Fox
will actually like to debug. Regards, Søren On Thu, May 28, 2009 at 07:52, Lucius Fox lucius.fo...@gmail.com wrote: Hi, i am trying to understand how chromium passes JS script node/JS file to v8 engine for execution. So i setup breakpoints in Xcode with test)shell xcode project opened

[chromium-dev] How can i listen for page load complete event

2009-05-27 Thread Lucius Fox
Hi, In chromium how can I listen for page load complete event (i.e the whole page (including iframe/frame) is done loading and CSS is parsed and built /JS are executed). Thank you. --~--~-~--~~~---~--~~ Chromium Developers mailing list:

[chromium-dev] Where is the integration point betwee chromium and V8

2009-05-27 Thread Lucius Fox
Hi, i am trying to understand how chromium passes JS script node/JS file to v8 engine for execution. So i setup breakpoints in Xcode with test)shell xcode project opened: Compiler::Compile Compiler::CompileEval Compiler::CompileLazy And then I 'build and go (debug)' to get a TestShell. It did