Re: [chromium-dev] Setting global preferences/settings in code

2009-12-19 Thread PhistucK
Take a look at this file - http://src.chromium.org/svn/trunk/src/chrome/installer/util/master_preferences.h http://src.chromium.org/svn/trunk/src/chrome/installer/util/master_preferences.hAs far as I understand, if you put in the output directory a file named master_preferences and put the data

Re: [chromium-dev] Setting global preferences/settings in code

2009-12-19 Thread Peter Kasting
On Sat, Dec 19, 2009 at 12:59 AM, PhistucK phist...@gmail.com wrote: Though, I think, currently, there is no way to inject bookmarks. I believe there is, or will be, because I believe we've had this request before. PK -- Chromium Developers mailing list: chromium-dev@googlegroups.com View

Re: [chromium-dev] Best way to test HTTP basic auth cross-platform?

2009-12-19 Thread Paweł Hajdan , Jr .
On Sat, Dec 19, 2009 at 02:25, Drew Wilson atwil...@chromium.org wrote: Is there another way to do it? Perhaps ui_test should register its own NotificationObserver with the AutomationProvider framework? Or is that a bogus approach? I'd really suggest starting with a browser_test instead. It's

[chromium-dev] Linux 32-bit build instructions

2009-12-19 Thread Kevin Millikin
I'm trying to build Linux 32-bit on 64-bit Ubuntu 8.04. The closest think I've found is http://code.google.com/p/chromium/wiki/LinuxBuild32On64 , but unless I'm just missing it, that doesn't seem to have actual build instructions. -- Chromium Developers mailing list:

Re: [chromium-dev] Linux 32-bit build instructions

2009-12-19 Thread Evan Martin
On Sat, Dec 19, 2009 at 6:59 AM, Kevin Millikin kmilli...@chromium.org wrote: I'm trying to build Linux 32-bit on 64-bit Ubuntu 8.04. The closest think I've found is http://code.google.com/p/chromium/wiki/LinuxBuild32On64 , but unless I'm just missing it, that doesn't seem to have actual build

Re: [chromium-dev] Linux 32-bit build instructions

2009-12-19 Thread Evan Martin
On Sat, Dec 19, 2009 at 7:06 AM, Evan Martin e...@chromium.org wrote: On Sat, Dec 19, 2009 at 6:59 AM, Kevin Millikin kmilli...@chromium.org wrote: I'm trying to build Linux 32-bit on 64-bit Ubuntu 8.04. The closest think I've found is http://code.google.com/p/chromium/wiki/LinuxBuild32On64

Re: [chromium-dev] Implementing the Chromium Webkit API

2009-12-19 Thread Balaji Rao
On Fri, Dec 18, 2009 at 11:35:29AM -0800, Evan Martin wrote: On Fri, Dec 18, 2009 at 10:32 AM, Balaji Rao balajir...@gmail.com wrote: I'm new to this list and I've joined after my discovery of the new Chromium WebKit API. Great work, it's awesome. It's very new, so don't expect it to all

Re: [chromium-dev] Implementing the Chromium Webkit API

2009-12-19 Thread Darin Fisher
On Fri, Dec 18, 2009 at 10:32 AM, Balaji Rao balajir...@gmail.com wrote: Obviously, the thing that would help me most is a sample implementation - which I think could exist because that there must have been an implementation that was grown parallel to the API itself. Is it the DumpRender tree

Re: [chromium-dev] Best way to test HTTP basic auth cross-platform?

2009-12-19 Thread Darin Fisher
It seems like TabProxy::NeedsAuth could (should) be modified to just return true if the corresponding TabContents is showing a login prompt. -Darin On Fri, Dec 18, 2009 at 5:25 PM, Drew Wilson atwil...@chromium.org wrote: Following up on this - it doesn't look like there's any way to detect

Re: [chromium-dev] Linux 32-bit build instructions

2009-12-19 Thread Antoine Labour
On Sat, Dec 19, 2009 at 7:06 AM, Evan Martin e...@chromium.org wrote: On Sat, Dec 19, 2009 at 6:59 AM, Kevin Millikin kmilli...@chromium.org wrote: I'm trying to build Linux 32-bit on 64-bit Ubuntu 8.04. The closest think I've found is

Re: [chromium-dev] Linux 32-bit build instructions

2009-12-19 Thread Kevin Millikin
Thanks Evan and Antoine. That did the trick. I'll update the docs, too. On Sat, Dec 19, 2009 at 8:27 PM, Antoine Labour pi...@google.com wrote: On Sat, Dec 19, 2009 at 7:06 AM, Evan Martin e...@chromium.org wrote: On Sat, Dec 19, 2009 at 6:59 AM, Kevin Millikin kmilli...@chromium.org

[chromium-dev] Link error with chromium on ubuntu 9.10

2009-12-19 Thread n179911
Hi, I get the chromium on ubuntu 9.10. The compilation is okay, but when I get link, it fails: $ make -j5 chrome LINK(target) out/Debug/chrome collect2: ld terminated with signal 9 [Killed] make: *** [out/Debug/chrome] Error 1 I think I have 'gold linker' installed: Building dependency tree

Re: [chromium-dev] Link error with chromium on ubuntu 9.10

2009-12-19 Thread Jacob Mandelson
On Sat, Dec 19, 2009 at 05:03:57PM -0800, n179911 wrote: Hi, I get the chromium on ubuntu 9.10. The compilation is okay, but when I get link, it fails: $ make -j5 chrome LINK(target) out/Debug/chrome collect2: ld terminated with signal 9 [Killed] make: *** [out/Debug/chrome] Error 1

[chromium-dev] Re: Recovering from browser crashes

2009-12-19 Thread cpu
The sandbox for windows requires that the target processes shall never survive the broker processes. In chrome the broker is the browser and the target is any of the sandboxed processes. This is enforced by job objects. At a glance this seems a hard thing to work around. So on top of the other