[chromium-dev] Re: Worker processes are now sandboxed on OS X

2009-11-07 Thread Jeremy Moskovich
It's quite confusing but worker processes [used for Web workers] utility processes represent 2 different process types. So: * Worker processes are enabled and Sandboxed on OS X. * Utiliity processes are disabled on OS X Linux but the plumbing is now in place to Sandbox them when they're

[chromium-dev] Re: Recommendations for string data type

2009-11-07 Thread Munjal Doshi
Thanks for all the responses. Just ot give some context (as some of you asked) I came across this recently when working on string cleanup in bookmark sync code. The sync protocol uses UTF8 and it interacts with bookmarks which is all wstrings. syncapi.h is the interface on top of sync engine that

[chromium-dev] Re: Preventing keypress after accellerator?

2009-11-07 Thread Peter Kasting
On Fri, Nov 6, 2009 at 6:51 PM, James Su su...@chromium.org wrote: One example: the default behavior of Ctrl+M keypress event is insertNewLine, and it'll always be performed in editor_client_impl.cc if the keypress event is not handled or prevented by the web app. Then the result is we can

[chromium-dev] Re: Preventing keypress after accellerator?

2009-11-07 Thread James Su
2009/11/8 Peter Kasting pkast...@google.com On Fri, Nov 6, 2009 at 6:51 PM, James Su su...@chromium.org wrote: One example: the default behavior of Ctrl+M keypress event is insertNewLine, and it'll always be performed in editor_client_impl.cc if the keypress event is not handled or

[chromium-dev] Multiple constrained windows

2009-11-07 Thread Nico Weber
Hi, some pages try to show multiple http auth dialogs at the same time ( one example is in http://crbug.com/26900 ). On linux, that happens to work fine, but on OS X it doesn't. I could change the OS X code to queue constrained windows and show only one window at a time per tab, or I could do

[chromium-dev] Re: Multiple constrained windows

2009-11-07 Thread Ben Goodger (Google)
How is it implemented now? -Ben On Sat, Nov 7, 2009 at 10:18 PM, Nico Weber tha...@chromium.org wrote: Hi, some pages try to show multiple http auth dialogs at the same time ( one example is in http://crbug.com/26900 ). On linux, that happens to work fine, but on OS X it doesn't. I could

[chromium-dev] Re: Multiple constrained windows

2009-11-07 Thread Joel Stanley
On Sun, Nov 8, 2009 at 16:48, Nico Weber tha...@chromium.org wrote: some pages try to show multiple http auth dialogs at the same time ( one example is in http://crbug.com/26900 ). On linux, that happens to work fine, but on OS X it doesn't. I could change the OS X code to queue constrained