Re: [chromium-dev] How can I tell if a Renderer process finishes loading a page

2010-01-11 Thread hap 497
Thank you. But when I load www.cnn.com, I see something strange: First the throbber is spinning, and then the cnn fave icon is shown and then the throbber is spinning again, and then fave icon is shown. And then the fave icon stays. Can you please help me understand under what situation will

Re: [chromium-dev] Question about GraphicsContext clipOut() function

2010-01-11 Thread Pierre-Antoine LaFayette
The clipOut function works like a normal clip() except, instead of clipping against the rect/path parameter, it removes the rect/path from the current drawing, i.e. clips it out. 2010/1/11 hap 497 hap...@gmail.com Hi, Can you please help me understand clipOut() function supposed to do? My

Re: [chromium-dev] How can I tell if a Renderer process finishes loading a page

2010-01-11 Thread Brett Wilson
On Mon, Jan 11, 2010 at 12:59 AM, hap 497 hap...@gmail.com wrote: Thank you. But when I load www.cnn.com, I see something strange: First the throbber is spinning, and then the cnn fave icon is shown and then the throbber is spinning again, and then fave icon is shown. And then the fave icon

Re: [chromium-dev] WebKit Gardeners 3 rebaseline.py -w

2010-01-11 Thread Victor Wang
I started working on upstreaming the rebaseline tool, which is part of the plan for upstreaming layout tests in Q1. On Sat, Jan 9, 2010 at 2:53 PM, Eric Seidel esei...@chromium.org wrote: Once we have this sort of tool for webkit.org then those of us who work on webkit.org could just add the

Re: [chromium-dev] opening local files with chrome from command line, relative paths

2010-01-11 Thread Scott Hess
On Sat, Jan 9, 2010 at 3:06 PM, Victor Khimenko k...@google.com wrote: P.S. There are interesting fact related to specifically colon and MacOS. Classic MacOS uses colon as delimeter and you can use slash in filename. when they used POSIX-compliat kernel they needed some way to resolve thus

Re: [chromium-dev] Linux sandbox configuration

2010-01-11 Thread Lei Zhang
Can you elaborate on what you mean by configure the sandbox? On Fri, Jan 8, 2010 at 11:36 PM, n179911 n179...@gmail.com wrote: Hi, Can you please tell me if/where is the file to configure chromium's renderer sandbox? Thank you. -- Chromium Developers mailing list:

[chromium-dev] no more chromium-os dependency in linux_view build

2010-01-11 Thread oshima
Hello All, On last Friday, I committed r35858, which (finally) removes chromium-os dependency from linux_view build. You no loner need git and the following line in your .gclient to build linux_view (toolkit_view=1 on linux). { name: cros deps, url :

[chromium-dev] Re: [Mac] Something is eating the right mouse button events in the Toolbar. Help!

2010-01-11 Thread Andrew Bonventre
Wrong list. Oops. On Mon, Jan 11, 2010 at 2:50 PM, Andrew Bonventre (Bons) andyb...@google.com wrote: I'm attempting to add context menus to Browser Action buttons within the toolbar, but I've hit a snag and cannot for the life of me figure out what is happening with my events... -

[chromium-dev] Re: Linux: gold linker users should upgrade to 2.20 soon.

2010-01-11 Thread Brian Lum
Hi, I am having problems with this issue when I try do a release build. When I try to build, I get an error which suggests that I need to upgrade: $ make BUILDTYPE=Release LINK(target) out/Release/xdisplaycheck /usr/bin/ld: --gc-sections: unknown option /usr/bin/ld: use the --help option for

[chromium-dev] Re: [Chrome-team] Re: [Mac] Something is eating the right mouse button events in the Toolbar. Help!

2010-01-11 Thread Mike Pinkerton
Can you compare what happens when you right-click on the omnibox vs. a bookmark button? It might be interesting to see where/how those stacks differ. On Mon, Jan 11, 2010 at 2:55 PM, Andrew Bonventre andyb...@chromium.org wrote: Wrong list. Oops. On Mon, Jan 11, 2010 at 2:50 PM, Andrew

[chromium-dev] displaying unparseable ftp directory listings as-is

2010-01-11 Thread Paweł Hajdan , Jr .
Is there any security risks with passing raw ftp listings to the renderer in case we can't parse them? We already have a check in the code so that we will only make a data connection to the server we have the control connection with. If it's ok to do so, I'd also like to include some message

[chromium-dev] Re: [Chrome-team] Re: [Mac] Something is eating the right mouse button events in the Toolbar. Help!

2010-01-11 Thread Drew Wilson
Are you adding application-custom context menus, or is this a static context menu provided by the browser? I ask, because I'm looking at adding custom context-menu functionality for extension systray UI, and I'd like to see what kind of API you came up with. -atw On Mon, Jan 11, 2010 at 11:55

Re: [chromium-dev] displaying unparseable ftp directory listings as-is

2010-01-11 Thread Pierre-Antoine LaFayette
I am looking into an issue involving adding icons for to the ftp directory listing page, can you point me to where this code is handled? I know that the HTML template is generated in ftp_directory_listing_response_delegate.cc. I'm trying to see if its okay to request icon data from the Browser

Re: [chromium-dev] Linux sandbox configuration

2010-01-11 Thread Adam Langley
On Fri, Jan 8, 2010 at 11:36 PM, n179911 n179...@gmail.com wrote: Can you please tell me if/where is the file to configure chromium's renderer sandbox? There is no configuration. That's probably why you can't find any :) AGL -- Chromium Developers mailing list: chromium-dev@googlegroups.com

Re: [chromium-dev] Re: Linux: gold linker users should upgrade to 2.20 soon.

2010-01-11 Thread Adam Langley
On Mon, Jan 11, 2010 at 11:49 AM, Brian Lum brian...@chromium.org wrote: Here is my ld version: $ ld -v GNU gold (GNU Binutils 2.19.1) 1.7 You have gold 2.19.1. You need gold 2.20. If install-build-deps.sh didn't work for you then you'll need to fix it. AGL -- Chromium Developers mailing

[chromium-dev] buildbot failure in Chromium on Chromium Builder (dbg), revision 35944

2010-01-11 Thread buildbot
Automatically closing tree for compile on Chromium Builder (dbg) http://build.chromium.org/buildbot/waterfall/builders/Chromium%20Builder%20%28dbg%29/builds/15412 http://build.chromium.org/buildbot/waterfall/waterfall?builder=Chromium%20Builder%20%28dbg%29 --= Automatically closing tree for

Re: [chromium-dev] Re: opening local files with chrome from command line, relative paths

2010-01-11 Thread Benjamin Smedberg
For what it's worth, the way Firefox solves this is: * Check if the file is an absolute file path ** on Windows, X:\... or \\... ** on Posix, /... * Otherwise, it's a URL relative to the current working directory ** So index.html resolves using the URL machinery to file:///c:/cwd/index.html **

[chromium-dev] buildbot failure in Chromium on Linux Builder (ChromiumOS), revision 35967

2010-01-11 Thread buildbot
Automatically closing tree for compile on Linux Builder (ChromiumOS) http://build.chromium.org/buildbot/waterfall/builders/Linux%20Builder%20%28ChromiumOS%29/builds/2142 http://build.chromium.org/buildbot/waterfall/waterfall?builder=Linux%20Builder%20%28ChromiumOS%29 --= Automatically closing

Re: [chromium-dev] Re: Linux: gold linker users should upgrade to 2.20 soon.

2010-01-11 Thread Brian Lum
Hi, So Albert Wong figured out what the issue is. Thanks! Currently, the script calls ld --version and checks whether gold is installed or not. It does not check the version, so if you have an old version like I did, then it will not update. We need to modify the script by changing the *gold*

[chromium-dev] on not displaying the home page in a new tab or window

2010-01-11 Thread Dirk Pranke
As a side thread to the Core Principles / home button thread that just went around, I have the following question: Is it by design that if I click on a new tab or a new window, and I have my preference set to open this page on the home page rather than use the new tab page, we still show the new

[chromium-dev] Interesting performance characteristics of http://a.qoid.us/google.html

2010-01-11 Thread Chris Evans
Hi, I found this interesting: http://a.qoid.us/google.html Because it's clearly very non-JavaScript focused (just a CSS rotation) and yet the browsers exhibit very different performance characteristics. All on my underpowered Windows laptop, Chrome 3 4: smooth. Very nice anti-aliased accurate

Re: [chromium-dev] Interesting performance characteristics of http://a.qoid.us/google.html

2010-01-11 Thread James Robinson
Chromium is spending nearly all of its time inside Skia, so it's likely Skia vs CG differences: Welcome to pprof! For help, type 'help'. (pprof) top Total: 1590 samples 592 37.2% 37.2% 592 37.2% SkRegion::Spanerator::Spanerator 89 5.6% 42.8% 89 5.6% sk_memset32_SSE2

Re: [chromium-dev] Interesting performance characteristics of http://a.qoid.us/google.html

2010-01-11 Thread Chris Evans
On Mon, Jan 11, 2010 at 11:01 PM, Evan Martin e...@chromium.org wrote: On Mon, Jan 11, 2010 at 9:04 PM, Chris Evans cev...@chromium.org wrote: The other browsers do not support the CSS used / required for this demo. There was a similar version, but using SVG animation to do something very