[chromium-dev] Re: Chromium crash

2009-07-19 Thread Thiago Farina
I thought this problem was known. Thanks! On Jul 19, 6:33 pm, Peter Kasting wrote: > On Sun, Jul 19, 2009 at 12:52 PM, Thiago Farina > wrote: > > > When I start typing in omnibox from Chromium (I'm debugging) the > > browser crashes... > > Since yo're debugging, you can track down what's going

[chromium-dev] Re: Chromium crash

2009-07-19 Thread Peter Kasting
On Sun, Jul 19, 2009 at 2:43 PM, Thiago Farina wrote: > How can I track down? Using your handy debugger, to see what's going on. If you don't know how to debug code, you're probably not going to be well-served by trying to get low-level details from this mailing list. Where is bug database loc

[chromium-dev] Re: Chromium crash

2009-07-19 Thread Thiago Farina
Hi Peter, How can I track down? Where is bug database located? In the Local\Chromium\User Data\Crash Reports directory, there is nothing. Thanks! On Jul 19, 6:33 pm, Peter Kasting wrote: > On Sun, Jul 19, 2009 at 12:52 PM, Thiago Farina > wrote: > > > When I start typing in omnibox from Chro

[chromium-dev] Re: How to add logging support to chromium

2009-07-19 Thread Mike Belshe
On Sun, Jul 19, 2009 at 2:26 PM, Jeremy Orlow wrote: > You add a function definition to the WebKitClient interface, but then the > implementation of the interface is in the renderer code. The renderer code > would then make the actual call to base. > When the renderer is initializing, it creates

[chromium-dev] Re: Chromium crash

2009-07-19 Thread Peter Kasting
On Sun, Jul 19, 2009 at 12:52 PM, Thiago Farina wrote: > When I start typing in omnibox from Chromium (I'm debugging) the > browser crashes... Since yo're debugging, you can track down what's going on. Then you can look it up in the bug database. PK --~--~-~--~~~--

[chromium-dev] Re: How to add logging support to chromium

2009-07-19 Thread Jeremy Orlow
You add a function definition to the WebKitClient interface, but then the implementation of the interface is in the renderer code. The renderer code would then make the actual call to base. When the renderer is initializing, it creates an instance of its WebKitClient implementation (src/chrome/ren

[chromium-dev] Re: How to add logging support to chromium

2009-07-19 Thread Mike Belshe
Thanks, Jeremy. Are you sure this is right? I don't think so. First, the README in WebKit/api says, > BASIC TYPES > Use of STL is prohibited except in cases where it would be allowed in WebCore. This includes non-allocating uses: algorithms, numeric limits, > etc. WTF container classe

[chromium-dev] Re: How to add logging support to chromium

2009-07-19 Thread Jeremy Orlow
Take a look at src/webkit/api/public. WebKitClient has all the hooks back into Chromium. src/chrome/renderer/renderer_webkitclient_impl.h implements the WebKitClient interface. I'm not exactly sure how you want to design the interface. If it's just a function or two and you don't need to maintai

[chromium-dev] Chromium crash

2009-07-19 Thread Thiago Farina
When I start typing in omnibox from Chromium (I'm debugging) the browser crashes... I'm getting this error: [2148:3796:1738765:FATAL:autocomplete.cc(438)] Check failed: classification.size() == 0, Error initializing symbols(0). Dumping unresolved backtrace: --~--~-~--~~~-

[chromium-dev] Re: Getting Started with a New Project

2009-07-19 Thread Thiago Farina
Did you added the common project to your solution? On Jul 19, 12:40 pm, Kruncher wrote: > For the purposes of practice I am trying to create an empty Win32 Exe > project that uses the demonstration code from: > > http://dev.chromium.org/developers/design-documents/chromeviews > > To do this I ha

[chromium-dev] What's the deal with document tags?

2009-07-19 Thread Paul Wicks
I'm working on implementing the OS X spelling panel for chromium and I was wondering about document tags (a unique tag for every spellcheckable thing). These tags are needed in order to support ignoring words, which the spelling panel has a button for. It looks like there is some support for it in

[chromium-dev] Getting Started with a New Project

2009-07-19 Thread Kruncher
For the purposes of practice I am trying to create an empty Win32 Exe project that uses the demonstration code from: http://dev.chromium.org/developers/design-documents/chromeviews To do this I have created a new solution and an empty project. I have then added the demonstration code, and in the

[chromium-dev] Re: hammer base_unittests failed

2009-07-19 Thread Dan Kegel
On Sun, Jul 19, 2009 at 10:15 AM, empriser wrote: > /home/chrome/src/skia/ext/bitmap_platform_device_linux.cc: In static > member function 'static skia::BitmapPlatformDevice* > skia::BitmapPlatformDevice::Create(int, int, bool, uint8_t*)': > /home/chrome/src/skia/ext/bitmap_platform_device_linux.c

[chromium-dev] gclient run failed.

2009-07-19 Thread empriser
running 'svn update /home/chrome/src/chrome/test/data/workers/ LayoutTests/http/tests/workers --revision 46087' in '/home/chrome' svn: PROPFIND request failed on '/repository/webkit/trunk/LayoutTests/ http/tests/workers' svn: PROPFIND of '/repository/webkit/trunk/LayoutTests/http/tests/ w

[chromium-dev] hammer base_unittests failed

2009-07-19 Thread empriser
chrome[26-06:27:20]/home/chrome/src/base>hammer base_unittests scons: Reading SConscript files ... scons: done reading SConscript files. scons: Building targets ... Extracting last change to /home/chrome/src/sconsbuild/Debug/obj/ _global_intermediate/build/LASTCHANGE Compiling /home/chrome/src/sco

[chromium-dev] How to add logging support to chromium

2009-07-19 Thread Mike Belshe
I want to log something from within webkit and have it show up in Chrome's log. This seemingly basic operation seems to be unsupported in chromium's version of webkit? First off, WebKit does have WTFLogging facilities (see logging.h and assertions.h) which are similar to our LOG(XXX) faciities.