[webkit-dev] Error Building under ubuntu

2010-01-13 Thread Stanislas
I try to build Webkit on Ubuntu but i got this error : gcc: language c++ n'est pas reconnu /usr/bin/perl -I/home/developpement/projects/webkit-1.0.1/WebCore/bindings/scripts /home/developpement/projects/webkit-1.0.1/WebCore/dom/make_names.pl --tags /home/developpement/projects/webkit-1.0.1/WebC

Re: [webkit-dev] Error Building under ubuntu

2010-01-13 Thread David Kilzer
Please use the webkit-help mailing list for questions like this. Thanks! Dave ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

[webkit-dev] global new/delete operator in WebKit

2010-01-13 Thread Darin Adler
In the discussion in bug 32831, Yong Li asked me why we are planning, in the future, to remove the global new/delete operator in the Mac OS X WebKit. I decided it was worth answering here. Why does WebKit override operator new/delete? Historically on Mac OS X we got faster performance by using

[webkit-dev] IconDatabase

2010-01-13 Thread Jason Rukman
I'm trying to get the icon database to load up the previous icons on the WinCE port. What I've found is that it seems to require the history to be already loaded (thereby populating m_pageURLToRecordMap) so that performURLImport can find the pageRecord items. However, when if I load the his

[webkit-dev] Lots of “BREW” patches up for r eview

2010-01-13 Thread Darin Adler
Someone is porting WebKit to Qualcomm’s BREW. And there are many patches for that port; now a significant fraction of the unreviewed WebKit patches. Who’s going to review these? Is this a one-time code drop or is there an intent to maintain this port ongoing? Does the test suite work on the BREW

Re: [webkit-dev] IconDatabase

2010-01-13 Thread Darin Adler
On Jan 13, 2010, at 9:22 AM, Jason Rukman wrote: > Do I load the history first, or initialize the icon database first since they > seem to have an interdependency that I don’t see how to resolve. I believe the correct sequence is to call delayDatabaseCleanup first, then initialize the icon data

Re: [webkit-dev] global new/delete operator in WebKit

2010-01-13 Thread Yong Li
Darin, thank you very much for writing this for my questions. I have another question for "new int[10]", but I guess the answer will be "using Vector instead". I like the idea that webkit should allow using a custom memory allocator, but I think for most platforms/compilers, overloading global new

[webkit-dev] Support injection of inspector scripts into the inspected ScriptState

2010-01-13 Thread Geoffrey Garen
Hi. I just reviewed a small portion of the planned Web Inspector refactoring in bug 33469. I'm new to this refactoring, but I see two problems with it, which I've now filed as bugs: https://bugs.webkit.org/show_bug.cgi?id=33615 https://bugs.webkit.org/show_bug.cgi?id=33616 I'm not sure what t

Re: [webkit-dev] Lots of “BREW” patches up for r eview

2010-01-13 Thread Holger Freyther
On Wednesday 13 January 2010 18:23:21 Darin Adler wrote: > Someone is porting WebKit to Qualcomm’s BREW. And there are many patches > for that port; now a significant fraction of the unreviewed WebKit > patches. Who’s going to review these? Is this a one-time code drop or is > there an intent to

Re: [webkit-dev] global new/delete operator in WebKit

2010-01-13 Thread Zoltan Horvath
First, Darin thanks for the summary! On Wednesday 13 January 2010, at 20:23, Yong Li wrote: > Darin, thank you very much for writing this for my questions. I have > another question for "new int[10]", but I guess the answer will be "using > Vector instead". At the most of the cases WebKit doesn'

[webkit-dev] Remove underscore check in check-webkit-style?

2010-01-13 Thread Adam Barth
Current check-webkit-style and the style bot complain if code uses identifiers with underscores in their names. It turns out our code does this fairly often, especially in Qt and Gtk specific code, for example to interface with unit testing frameworks. We could either: 1) Teach check-webkit-styl

Re: [webkit-dev] Remove underscore check in check-webkit-style?

2010-01-13 Thread David Levin
3) Stop checking code in gtk/qt platform directories for underscores? I think there are several other checks that code in some of these directories typically fail due to various issues (public api that should follow the standard public api format for that platform, etc.) On Wed, Jan 13, 2010 at

Re: [webkit-dev] Remove underscore check in check-webkit-style?

2010-01-13 Thread Evan Martin
On Wed, Jan 13, 2010 at 3:43 PM, Adam Barth wrote: > Current check-webkit-style and the style bot complain if code uses > identifiers with underscores in their names.  It turns out our code > does this fairly often, especially in Qt and Gtk specific code, for > example to interface with unit testi

Re: [webkit-dev] Lots of “BREW” patches up for review

2010-01-13 Thread KwangYul Seo
Hi, I am Kwang Yul Seo and I work for Company 100, Inc. (http://www.company100.net). I have started to submit patches that are required to port WebKit to Qualcomm's BREW platform. This is not a one-time code drop. We want to maintain the BREW port ongoing and will do everything that are required

Re: [webkit-dev] Remove underscore check in check-webkit-style?

2010-01-13 Thread Darin Fisher
On Wed, Jan 13, 2010 at 4:17 PM, Evan Martin wrote: > On Wed, Jan 13, 2010 at 3:43 PM, Adam Barth wrote: > > Current check-webkit-style and the style bot complain if code uses > > identifiers with underscores in their names. It turns out our code > > does this fairly often, especially in Qt and

[webkit-dev] Super-slow websocket tests

2010-01-13 Thread Darin Adler
I noticed that my local run-webkit-tests took a long time, and also all the bots seemed to be stuck running layout tests. The culprits seem to be these tests: 6.87 secs: websocket/tests/frame-lengths.html 3.63 secs: websocket/tests/simple-stress.html 1.18 secs: websocket/tests/bad-sub-protocol.h

Re: [webkit-dev] Super-slow websocket tests

2010-01-13 Thread Alexey Proskuryakov
On 13.01.2010, at 17:00, Darin Adler wrote: 6.87 secs: websocket/tests/frame-lengths.html This test verifies that packet size computation logic is correct for all message sizes from 0 to 1025. We've had bugs in this area before, and it's hard to ensure adequate coverage without testing al

Re: [webkit-dev] global new/delete operator in WebKit

2010-01-13 Thread Yong Li
2010/1/13 Zoltan Horvath > > First, Darin thanks for the summary! > > On Wednesday 13 January 2010, at 20:23, Yong Li wrote: > > Darin, thank you very much for writing this for my questions. I have > > another question for "new int[10]", but I guess the answer will be "using > > Vector instead".

Re: [webkit-dev] Super-slow websocket tests

2010-01-13 Thread 鵜飼文敏
On Thu, Jan 14, 2010 at 10:34 AM, Alexey Proskuryakov wrote: > > On 13.01.2010, at 17:00, Darin Adler wrote: > > 6.87 secs: websocket/tests/frame-lengths.html >> > > This test verifies that packet size computation logic is correct for all > message sizes from 0 to 1025. We've had bugs in this ar

Re: [webkit-dev] Super-slow websocket tests

2010-01-13 Thread Alexey Proskuryakov
13.01.2010, в 19:16, Fumitoshi Ukai (鵜飼文敏) написал(а): > 6.87 secs: websocket/tests/frame-lengths.html > > This test verifies that packet size computation logic is correct for all > message sizes from 0 to 1025. We've had bugs in this area before, and it's > hard to ensure adequate coverage wi

Re: [webkit-dev] Super-slow websocket tests

2010-01-13 Thread 鵜飼文敏
On Thu, Jan 14, 2010 at 12:29 PM, Alexey Proskuryakov wrote: > > 13.01.2010, в 19:16, Fumitoshi Ukai (鵜飼文敏) написал(а): > > 6.87 secs: websocket/tests/frame-lengths.html >>> >> >> This test verifies that packet size computation logic is correct for all >> message sizes from 0 to 1025. We've had b

[webkit-dev] Database in Worker context

2010-01-13 Thread Eric Uhrhane
Hello webkit folks! This is just a heads-up that I'm working on implementing access to the SQL database from worker context [I see https://bugs.webkit.org/show_bug.cgi?id=22725, now that I look for it]. I'll give a quick outline as to how I'm doing it, and if you want to tell me that there's a be

[webkit-dev] Database in Worker context

2010-01-13 Thread Eric Uhrhane
Hello webkit folks! This is just a heads-up that I'm working on implementing access to the SQL database from worker context [I see https://bugs.webkit.org/show_bug.cgi?id=22725, now that I look for it]. I'll give a quick outline as to how I'm doing it, and if you want to tell me that there's a be

[webkit-dev] support for WebKit

2010-01-13 Thread Charles Wei
Hi, I am working on a WebKit defect which is related when xHTML-Mobile Provile (XHTMLMP) is enabled. When I looked into the code, I found that the is made available only when XHTMLMP is turned on. I am wondering why so ? Isn't a HTML4.0.1 tag ? why it's not supported for HTML ? Thanks --Charl

Re: [webkit-dev] Style for Gtk/Qt code

2010-01-13 Thread Philippe Normand
On Mon, 2009-12-21 at 01:25 -0600, Eric Seidel wrote: > The style-bot warns for style errors in all code in the webkit tree, > but I'm not sure if that's correct. > > Are there sections of gtk/qt/whatever code which should be in a different > style? > > Sometimes these warnings are ignored. Som

Re: [webkit-dev] About debug of webkit

2010-01-13 Thread Ariya Hidayat
> I just want to confirm that I got exactly the same problem and have no clue > how to resolve it. The Chinese below basically says “Failed to initialize > application (0xc0150002). Click ok to terminate.” Do you guys have enough RAM? Say 4 GB or more? _

Re: [webkit-dev] Lots of “BREW” patches up for r eview

2010-01-13 Thread Ariya Hidayat
> This is not a one-time code drop. We want to maintain the BREW port > ongoing and will do everything that are required to keep the BREW port > up and running. Porting DumpRenderTree is still under work, but we > have a complete BREW port which works fine both in BREW device and > simulator. Kwan