[chromium-dev] Re: How do I not sync the layout tests in an existing client?

2009-06-05 Thread Glen Murphy
FWIW, because svn-ignore still downloads file information (so it knows what to ignore), a sync of just /webkit will download about 100MB *every time you sync*. (This is still better than having 200,000 useless files on my harddrive). On Tue, Apr 28, 2009 at 9:38 AM, Nicolas

[chromium-dev] New views::Menu API

2009-06-05 Thread Ben Goodger (Google)
As part of the TOOLKIT_VIEWS work some of the long time deficiencies of the existing views::Menu API have come to a head. I think it may finally be time to revisit this. The system of menu delegates, controllers, and such like are very confusing. We have an API that on one hand provides a

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

2009-06-05 Thread Lucius Fox
Hi, From this earlier message, it was mentioned that v8 has cache for compiled script. Does that mean chromium uses this v8 compiled script cache? If yes, does that mean each render process has it own cache? or all render process shared 1 cache? And does the content of the compiled script cache

[chromium-dev] chrome crashes - please help

2009-06-05 Thread mailandr...@gmail.com
Hi, I am getting following error when i run the chrome.exe in --single- process switch mode. [5272:5864:264167375:FATAL:render_widget_host_view_win.cc(557)]Check failed: render_widget_host_-process()-channel() after pressing ok i get the message as, Whoa! Chromium has crashed. Restart now?

[chromium-dev] Buffed-data-source Question

2009-06-05 Thread mr
Does buffered data source cache entire media data, e.g. a 2GB file? or just part of it? BR Mary --~--~-~--~~~---~--~~ Chromium Developers mailing list: chromium-dev@googlegroups.com View archives, change email options, or unsubscribe:

[chromium-dev] Re: chrome crashes - please help

2009-06-05 Thread Marc-Antoine Ruel
On Fri, Jun 5, 2009 at 6:10 AM, mailandr...@gmail.com veena...@gmail.comwrote: Hi, I am getting following error when i run the chrome.exe in --single- process switch mode. [5272:5864:264167375:FATAL:render_widget_host_view_win.cc(557)]Check failed: render_widget_host_-process()-channel()

[chromium-dev] Re: Fixing our keyboard handling act on OSX

2009-06-05 Thread Nico Weber
Hi, re Type ctrl-a on hebrew keyboard: On OS X, ctrl-a usually does not select all text (that's what cmd-a does) but goes to the beginning of the current line, as in emacs. But that can be overridden ( http://www.hcs.harvard.edu/~jrus/site/cocoa-text.html ). Nico 2009/6/5 Hironori Bono (坊野 博典)

[chromium-dev] Re: New views::Menu API

2009-06-05 Thread Evan Martin
One thing to consider is if there's any reasonable point to cut the API such that more menu code can be shared across platforms. It's pretty trivial to just build a simple menu (like the right-click context one for pages) directly on Linux (and surely Mac), but duplicating that sort of modely

[chromium-dev] Re: chrome crashes - please help

2009-06-05 Thread Evan Martin
On Fri, Jun 5, 2009 at 7:37 AM, Marc-Antoine Ruelmar...@chromium.org wrote: --single-process is not maintained and its tests have been downgraded to the For Your Information waterfall at http://build.chromium.org/buildbot/waterfall.fyi/waterfall We'd probably accept patches to simply remove

[chromium-dev] Re: chrome crashes - please help

2009-06-05 Thread Jim Roskind
+1 Please do not remove it. It is VERY valuable for development and debugging across renderer and browser. IMO, it should be maintained at least enough to mostly run (at least past startup as shown above). If this startup failure can be reproduced, it should be filed as a bug and fixed. I have

[chromium-dev] Re: Fixing our keyboard handling act on OSX

2009-06-05 Thread Evan Martin
For what it's worth, the current Linux key-handling code was not written too carefully -- we've kinda tweaked it until it seemed to work without analyzing what Windows does too carefully. Your document is very helpful, and we'll certainly take any recommendations you have on how to fix it since

[chromium-dev] Re: Fixing our keyboard handling act on OSX

2009-06-05 Thread Avi Drissman
Very interesting writeup. Some thoughts: You don't touch on how Safari on the Mac handles this case. It seems to overlap with some of the work that Jeremy was doing based on his discoveries in WebKit's WebHTMLView.mm. Where does its _interceptEditingKeyEvent get called? Synthesizing CHAR events

[chromium-dev] Re: New views::Menu API

2009-06-05 Thread Elliot Glaysher (Chromium)
I wasn't happy doing a direct port of the old Menu to GTK. This sounds a lot better. -- Elliot On Fri, Jun 5, 2009 at 12:34 AM, Ben Goodger (Google) b...@chromium.org wrote: As part of the TOOLKIT_VIEWS work some of the long time deficiencies of the existing views::Menu API have come to a

[chromium-dev] Is there a way to change the order in which individual unit tests are run?

2009-06-05 Thread Book'em Dano
As an example, let's say I'm making some changes to CommandLine. As part of these changes, I'm wanting to run base_unittests. However, it's super annoying that I have to wait a few minutes while the other unit tests within this suite are run before the CommandLine unit test is hit. Is there a way

[chromium-dev] Permissive code review try job status

2009-06-05 Thread Marc-Antoine Ruel
You may have realized that the try job status may now be green even if some tests failed. The reason is simple; http://since chromium-status.appspot.com/lkgr is only looking at some steps (namely unit_tests), it didn't make sense to blame the user for failed steps that may be red on the trunk.

[chromium-dev] Re: Is there a way to change the order in which individual unit tests are run?

2009-06-05 Thread Pam Greene
Reordering is awkward (basically, edit the source file to reorder or disable some), but you can run only the CommandLine tests by appending this to your (hah) command line: --gtest_filter=CommandLine.* In VS, go to the project properties for base_unittests, pick Debugging, and put that in as the

[chromium-dev] Re: Is there a way to change the order in which individual unit tests are run?

2009-06-05 Thread Marc-Antoine Ruel
Or you can use this sick macro: http://code.google.com/p/chromium/wiki/WindowsVisualStudioMacros#Run_the_currently_selected_google_test On Fri, Jun 5, 2009 at 3:44 PM, Pam Greene p...@chromium.org wrote: Reordering is awkward (basically, edit the source file to reorder or disable some), but

[chromium-dev] Re: Is there a way to change the order in which individual unit tests are run?

2009-06-05 Thread Evan Martin
/me is impressed at your VB skillz On Fri, Jun 5, 2009 at 12:48 PM, Marc-Antoine Ruel mar...@chromium.org wrote: Or you can use this sick macro: http://code.google.com/p/chromium/wiki/WindowsVisualStudioMacros#Run_the_currently_selected_google_test On Fri, Jun 5, 2009 at 3:44 PM, Pam Greene

[chromium-dev] Re: Buffed-data-source Question

2009-06-05 Thread Andrew Scherkus
BufferedDataSource acts as a sliding window and only buffers a portion of the media file in memory. Hope that helps, Andrew On Fri, Jun 5, 2009 at 3:50 AM, mr mary.ri...@gmail.com wrote: Does buffered data source cache entire media data, e.g. a 2GB file? or just part of it? BR Mary

[chromium-dev] Build errors with VS2008SP1

2009-06-05 Thread nakro
for chrome_dll.vcproj : tcmalloc.lib(override_functions.obj) : error LNK2005: _malloc already defined in libcmt.lib(malloc.obj) and many others related to libcmt . i really want to know if i am the only one getting this because if so, this means something is very wrong with my config (i

[chromium-dev] Re: Build errors with VS2008SP1

2009-06-05 Thread Elliot Glaysher (Chromium)
Works for me. Synced yesterday. MSVS2005. -- Elliot On Fri, Jun 5, 2009 at 3:58 PM, nakro yoav.zilberb...@gmail.com wrote: for chrome_dll.vcproj : tcmalloc.lib(override_functions.obj) : error LNK2005: _malloc already defined in libcmt.lib(malloc.obj) and many others related to libcmt .

[chromium-dev] Re: Build errors with VS2008SP1

2009-06-05 Thread nakro
Thanx elliot, but this is why i specified i use 2008, and i know you have no build bots for it 2005 is not an option for me, i am stuck with 2008 pro, and again, i don't wish to waste your time on helping me fix it, just to know if i am the only one so i know where to look for the problems

[chromium-dev] Re: Build errors with VS2008SP1

2009-06-05 Thread Nicolas Sylvain
People were getting the same error when we introduced tcmalloc a long time ago. (40 days ago). the fix was this one : http://codereview.chromium.org/92037 It required a clobber build... When is the last time you synced? Nicolas On Fri, Jun 5, 2009 at 3:58 PM, nakro yoav.zilberb...@gmail.com

[chromium-dev] Re: Build errors with VS2008SP1

2009-06-05 Thread nakro
i have 17796 (from 2 hours back) but the problems started today or yesterday i only take from http://build.chromium.org/buildbot/continuous/LATEST/REVISION but anyways it should have compiled do you have VS2008SP1 and you can compile ? if so, i know that something in my installation is wrong

[chromium-dev] Collapsed view of our waterfall

2009-06-05 Thread Finnur Thorarinsson
It seems that every week I get around 2-3 people walking past my monitors asking Whoa! How did you get this cool view of the build tree waterfall?! What they are referring to is the *merged* view of Nicolas' awesome waterfall console view (the one that doesn't contain all the changelist

[chromium-dev] Re: Build errors with VS2008SP1

2009-06-05 Thread nakro
yes peter, i did, in windows jargon i rd /q /d Debug and VS was as close as can be again, i do not wish you waste your time, all i want to hear is that one of you has 2008SP1 and can(!) compile it, and then i will know it is not some GYP problem, but my machine

[chromium-dev] Re: Build errors with VS2008SP1

2009-06-05 Thread nakro
Peter, hope its not a double post, i did nuke my debug folder and i had VS close while i did the gclient revert and sync and all the rest of them --~--~-~--~~~---~--~~ Chromium Developers mailing list: chromium-dev@googlegroups.com View archives, change email

[chromium-dev] Re: Collapsed view of our waterfall

2009-06-05 Thread Eric Roman
Sweetness! I didn't know about that either. /me votes for making collapsed view the default since one generally doesn't want to see the descriptions unless something broke. On Fri, Jun 5, 2009 at 4:16 PM, Finnur Thorarinssonfin...@chromium.org wrote: It seems that every week I get around 2-3

[chromium-dev] Re: Collapsed view of our waterfall

2009-06-05 Thread Ben Goodger (Google)
It'd be cool if it at least had a URL so one could bookmark it. -Ben On Fri, Jun 5, 2009 at 4:27 PM, Eric Romanero...@chromium.org wrote: Sweetness! I didn't know about that either. /me votes for making collapsed view the default since one generally doesn't want to see the descriptions

[chromium-dev] Re: Collapsed view of our waterfall

2009-06-05 Thread Nicolas Sylvain
On Fri, Jun 5, 2009 at 4:29 PM, Ben Goodger (Google) b...@chromium.orgwrote: It'd be cool if it at least had a URL so one could bookmark it. It sets a cookie. You don't have to set it everytime. But yeah, a flag would be nice too. Nicolas -Ben On Fri, Jun 5, 2009 at 4:27 PM, Eric

[chromium-dev] Re: Collapsed view of our waterfall

2009-06-05 Thread Mohamed Mansour
I always use that view as well :) for over a month. Nice job Nicolas! -- Mohamed Mansour On Fri, Jun 5, 2009 at 8:12 PM, Nicolas Sylvain nsylv...@chromium.orgwrote: On Fri, Jun 5, 2009 at 4:29 PM, Ben Goodger (Google) b...@chromium.orgwrote: It'd be cool if it at least had a URL so one

[chromium-dev] Re: Print Settings Mockup

2009-06-05 Thread Mohamed Mansour
I really like the mock-up, when can you do one for Settings? If we are going to include settings to this page (such as margins, headers, footers, etc), does that mean it would be per page? I was thinking of global printer settings which will be persistent. I don't know how that will fit this

[chromium-dev] chrome-bisect.py: Mac Chrome Continuous Build Archive Bisecting

2009-06-05 Thread Robert Sesek
Tonight I wrote a Python script called chrome-bisect.py that performs a binary search on the Mac continuous build archive. It takes a starting known-good and bad revision and then downloads, unzips, and opens the archived builds for you. You can then test the running build and report back to

[chromium-dev] Re: chrome-bisect.py: Mac Chrome Continuous Build Archive Bisecting

2009-06-05 Thread Jeremy Moskovich
That's great and I don't mean to belittle the awesomeness of this in any way but: git has built-in support for this along with many other advantages over SVN, I use git along with the gitx gui on OSX and it's greatly increased my productivity. It would make me much happier if more people on the