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

2009-07-20 Thread Kruncher
Yes, I tried adding that project but it didn't seem to help. On 19 July, 20:49, Thiago Farina thiago.far...@gmail.com wrote: Did you added the common project to your solution? On Jul 19, 12:40 pm, Kruncher leaha...@gmail.com wrote: For the purposes of practice I am trying to create an

[chromium-dev] Re: novel use of v8 - CSS Scripting Layout

2009-07-20 Thread darrel karisch
I notice that Greg Badros, www.badros.com/greg/doc/resume.html, is at Google now since March. I'd love to see him implement Constraint CSS (CCSS) in chrome, www.badros.com/greg/papers/css-uist99.pdf, and get the support and recognition it deserves. what is he working on?

[chromium-dev] Re: novel use of v8 - CSS Scripting Layout

2009-07-20 Thread Evan Martin
You are too late, as this article describes. http://www.techcrunch.com/2009/06/12/facebook-nabs-googles-senior-director-of-engineering/ On Mon, Jul 20, 2009 at 3:12 PM, darrel karischdkari...@gmail.com wrote: I notice that Greg Badros, www.badros.com/greg/doc/resume.html, is at Google now

[chromium-dev] Re: novel use of v8 - CSS Scripting Layout

2009-07-20 Thread darrel karisch
that's unfortunate. it's lamentable that CCSS can't find a home. --~--~-~--~~~---~--~~ Chromium Developers mailing list: chromium-dev@googlegroups.com View archives, change email options, or unsubscribe: http://groups.google.com/group/chromium-dev

[chromium-dev] Re: novel use of v8 - CSS Scripting Layout

2009-07-20 Thread Evan Martin
Well, to emphasize the advice given previously on the thread: after much work the project is now set up such that we literally cannot make a change in our rendering engine without it being added to WebKit -- we don't even have our own copy of the WebKit code, but instead check it out directly

[chromium-dev] Purify help office hours

2009-07-20 Thread Erik Kay
To echo Dan's valgrind office hours, I'll be available to help with Purify issues for this week's fixit as well. See http://code.google.com/p/chromium/wiki/StabilityFixitWeek for more details (thanks to dank for setting up this page). I'll be on IRC from 9-3:30PST, and should respond to email

[chromium-dev] Reusing chromium code

2009-07-20 Thread Igor Gatis
Chromium has lots of interesting base APIs such as the ones found under base/ and testing/. Is there any chance these two could be available as a separate library? It would be great if I could use such library in my own projects. Thanks, -Gatis

[chromium-dev] Unable to download Chrome Source Code

2009-07-20 Thread Pradeep
Hi All, From past several days I am trying to download the source code, but for some reason the download quits after completion of 17 - 18 MB. I need assistance in this matter. Thanks Regards Pradeep Chandra --~--~-~--~~~---~--~~ Chromium Developers mailing

[chromium-dev] Re: Access to window handles from plugins?

2009-07-20 Thread Simon Stewart
This is something along the lines of calling IWebBrowser2.get_HWND or (more similarly) using XPCOM's nsIAccessibleDocument-GetWindowHandle () calls: http://msdn.microsoft.com/en-us/library/aa454384.aspx https://developer.mozilla.org/En/NsIAccessibleDocument/windowHandle Both of these provide a

[chromium-dev] Google Chrome - COM objects methods

2009-07-20 Thread saurabh
Hi, I am new to Google chrome. I wanted to know if chrome supports Component Object Model. If yes, how can I get its object/method list? Thanks, Saurabh --~--~-~--~~~---~--~~ Chromium Developers mailing list: chromium-dev@googlegroups.com View archives,

[chromium-dev] Re: Reusing chromium code

2009-07-20 Thread Evan Martin
http://code.google.com/p/googletest/ On Sun, Jul 19, 2009 at 1:46 PM, Igor Gatisigorga...@gmail.com wrote: Chromium has lots of interesting base APIs such as the ones found under base/ and testing/. Is there any chance these two could be available as a separate library? It would be great if

[chromium-dev] Re: Google Chrome - COM objects methods

2009-07-20 Thread Evan Martin
On Fri, Jul 17, 2009 at 6:59 PM, saurabhbuksh.saur...@gmail.com wrote: I wanted to know if chrome supports Component Object Model. It doesn't. Maybe take a look at http://code.google.com/p/chromiumembedded/ if you want to embed Chrome. --~--~-~--~~~---~--~~

[chromium-dev] Re: novel use of v8 - CSS Scripting Layout

2009-07-20 Thread darrel karisch
The next step for your specification is to go to the W3C. yes, I've submitted a request to webkit.org a few days ago. I'm not advocating that anybody adopt the code. I merely wanted a POC for my own benefit and analysis before publicizing the proposal. I'd rather prefer to see some form of

[chromium-dev] Re: novel use of v8 - CSS Scripting Layout

2009-07-20 Thread Adam Barth
On Mon, Jul 20, 2009 at 11:04 AM, darrel karischdkari...@gmail.com wrote: using the parallel universe V8IsolatedWorld addresses the security concerns for the most part. I'm not sure this is the case. That feature was design explicitly for the extension use case. We'd have to think carefully

[chromium-dev] Design Doc: Adaptive spell checking for multilingual users

2009-07-20 Thread sidchat
A new feature to add to the SpellChecker would be its ability to adapt to the user's language of choice when typing in a text box. A design doc can be found at: http://sites.google.com/a/chromium.org/dev/developers/design-documents/advancedspellchecker It will be great if you could go over it

[chromium-dev] Re: Chromium crash

2009-07-20 Thread Scott Hess
Looks to me like the code in question wouldn't be compiled into release builds in the first place (it's under NDEBUG). So it might be problematic to match it to a known bug, since the known bugs would mostly look different. The general case of Started typing in omnibox and crashed is obviously

[chromium-dev] Please look at your Mstone:3 bugs!

2009-07-20 Thread Ben Goodger (Google)
As we begin to tighten the screws on Mstone:3, please review your Mstone:3 bugs: http://code.google.com/p/chromium/issues/list?can=2q=Mstone%3A3+owner%3Ame If you need help with or have concerns about anything on your list, let your neighborhood triage team know and they'll find help. -Ben

[chromium-dev] Re: Unable to download Chrome Source Code

2009-07-20 Thread nakro
Pradeep, i was also never able to download the source via the tarball what i did in the end was use gclient sync as it continues from where it left off, if the download is interrupted also a friend of mine could only get the source code like this

[chromium-dev] Re: Chromium crash

2009-07-20 Thread Thiago Farina
Yes, I'm compiling the code under debug build option. Everytime I try to type in omnibox this happens. On Jul 20, 4:02 pm, Scott Hess sh...@chromium.org wrote: Looks to me like the code in question wouldn't be compiled into release builds in the first place (it's under NDEBUG). So it might be

[chromium-dev] Re: Chromium crash

2009-07-20 Thread Dan Kegel
OK, how about a backtrace? On Mon, Jul 20, 2009 at 8:24 PM, Thiago Farinathiago.far...@gmail.com wrote: Yes, I'm compiling the code under debug build option. Everytime I try to type in omnibox this happens. On Jul 20, 4:02 pm, Scott Hess sh...@chromium.org wrote: Looks to me like the code

[chromium-dev] Re: Design Doc: Adaptive spell checking for multilingual users

2009-07-20 Thread Paul Wicks
Another thing to consider is that something sort of like this is already supported by the OS X spellchecker through the Multilingual language setting. There is currently no way to switch to Multilingual in Chromium on OS X, but it wouldn't be that hard to enable that and it really is something

[chromium-dev] Please keep TOOLKIT_VIEWS green!

2009-07-20 Thread Ben Goodger (Google)
This mostly applies to people working on UI. Sometime tonight or tomorrow we'll be moving the TOOLKIT_VIEWS builder to the front page of the waterfall. Right now it's building just the chrome target, and running no tests, but in time we'll build this out. This is an experimental build distinct

[chromium-dev] Re: valgrind help office hours

2009-07-20 Thread John Abd-El-Malek
I have a leak after a check-in. I tried following the instructions on my Linux box, but couldn't (I hardly develop on Linux). jabdelma...@jabdelmalek:/usr/local/google/chrome/src$ sh tools/valgrind/chrome_tests.sh --generate_suppressions -t ui Usage: chrome_tests.py -b dir -t test [-t test ...]

[chromium-dev] Re: valgrind help office hours

2009-07-20 Thread Thomas Van Lenten
On Mon, Jul 20, 2009 at 10:04 PM, John Abd-El-Malek j...@chromium.orgwrote: I have a leak after a check-in. I tried following the instructions on my Linux box, but couldn't (I hardly develop on Linux). jabdelma...@jabdelmalek:/usr/local/google/chrome/src$ sh tools/valgrind/chrome_tests.sh

[chromium-dev] Re: valgrind help office hours

2009-07-20 Thread John Abd-El-Malek
On Mon, Jul 20, 2009 at 7:31 PM, Thomas Van Lenten thoma...@chromium.orgwrote: On Mon, Jul 20, 2009 at 10:04 PM, John Abd-El-Malek j...@chromium.orgwrote: I have a leak after a check-in. I tried following the instructions on my Linux box, but couldn't (I hardly develop on Linux).

[chromium-dev] Re: Question about V8 bindings

2009-07-20 Thread Jeremy Orlow
Sorry if this is a dumb question, but why woudn't you simply have a WORKERCONTEXT and let virtual dispatch do its job for the rest? Shared methods can be implemented on the base class and the rest can be purely virtual with implementations in the sub classes. J On Mon, Jul 20, 2009 at 3:21 PM,

[chromium-dev] Re: Question about V8 bindings

2009-07-20 Thread Jeremy Orlow
In other words, make all workers appear the same to V8 (i.e. as a WORKERCONTEXT) and then implement polymorphism in the implementations being wrapped by V8. On Mon, Jul 20, 2009 at 8:19 PM, Jeremy Orlow jor...@chromium.org wrote: Sorry if this is a dumb question, but why woudn't you simply have

[chromium-dev] linux: debugging sandboxed renderers ?

2009-07-20 Thread Antoine Labour
So, sandboxing is in on linux, which is awesome. But how do I debug sandbox-related issues (in my case, why I can't create a shared memory buffer from the renderer when sandboxing is on). If I specify a --renderer-cmd-prefix, it doesn't use the zygote process, and I don't get sandboxed. If I let

[chromium-dev] Re: linux: debugging sandboxed renderers ?

2009-07-20 Thread Adam Langley
On Tue, Jul 21, 2009 at 3:27 AM, Antoine Labourpi...@google.com wrote: What's the best practice for debugging sanbox-related issues ? Usually you can just ask me: the reason you can't create shared memory is because you're trying to use POSIX shared memory, which requires filesystem access. You

[chromium-dev] Re: linux: debugging sandboxed renderers ?

2009-07-20 Thread Antoine Labour
On Tue, Jul 21, 2009 at 3:32 AM, Adam Langleya...@chromium.org wrote: On Tue, Jul 21, 2009 at 3:27 AM, Antoine Labourpi...@google.com wrote: What's the best practice for debugging sanbox-related issues ? Usually you can just ask me: the reason you can't create shared memory is because you're

[chromium-dev] Re: valgrind help office hours

2009-07-20 Thread Dan Kegel
On Tue, Jul 21, 2009 at 2:04 AM, John Abd-El-Malekj...@chromium.org wrote: I have a leak after a check-in.  I tried following the instructions on my Linux box, but couldn't (I hardly develop on Linux). jabdelma...@jabdelmalek:/usr/local/google/chrome/src$ sh tools/valgrind/chrome_tests.sh 

[chromium-dev] Re: linux: debugging sandboxed renderers ?

2009-07-20 Thread Evan Martin
On Tue, Jul 21, 2009 at 3:39 AM, Antoine Labourpi...@google.com wrote: On Tue, Jul 21, 2009 at 3:32 AM, Adam Langleya...@chromium.org wrote: On Tue, Jul 21, 2009 at 3:27 AM, Antoine Labourpi...@google.com wrote: What's the best practice for debugging sanbox-related issues ? Usually you can

[chromium-dev] Re: linux: debugging sandboxed renderers ?

2009-07-20 Thread Antoine Labour
On Tue, Jul 21, 2009 at 4:49 AM, Evan Martine...@chromium.org wrote: On Tue, Jul 21, 2009 at 3:39 AM, Antoine Labourpi...@google.com wrote: On Tue, Jul 21, 2009 at 3:32 AM, Adam Langleya...@chromium.org wrote: On Tue, Jul 21, 2009 at 3:27 AM, Antoine Labourpi...@google.com wrote: What's the