[chromium-dev] how can i test skia app using chrome

2009-05-11 Thread mailandr...@gmail.com
Hi How can i test simple skia application which using few draw function of skia? How can I run my application and render the contents using chrome browser? where can i add that application? some input on this whould be a great help. regards

[chromium-dev] Where's the WebKit API?

2009-05-11 Thread Darin Fisher
FYI: Over the weekend the WebKit API moved from src/third_party/WebKit/WebKit/chromium to src/webkit/api. Why make this change? After we deleted WebCore and JavaScriptCore, there wasn't much else left in third_party/WebKit, so having to roll DEPS for changes to the WebKit API would add cost for

[chromium-dev] What is the best way to file bugs against codereview.chromium.org?

2009-05-11 Thread Darin Fisher
In some cases, I suspect I may need to file the issue against upstream Reitveld... any guidance? Thanks, -Darin --~--~-~--~~~---~--~~ Chromium Developers mailing list: chromium-dev@googlegroups.com View archives, change email options, or unsubscribe:

[chromium-dev] Developing Chrome using tip-of-tree WebKit

2009-05-11 Thread Darin Fisher
It is now fairly easy to develop Chrome using tip-of-tree WebKit. First before doing anything, you should make sure that the canary bot is green (at least the compile step): http://hae14.jail.google.com:8016/waterfall?builder=Webkit%20(webkit.org) Then, create a .gclient file like so:

[chromium-dev] Re: What is the best way to file bugs against codereview.chromium.org?

2009-05-11 Thread John Abd-El-Malek
You can file a bug at http://code.google.com/p/rietveld/issues/list, and cc me. On Mon, May 11, 2009 at 9:36 AM, Darin Fisher da...@chromium.org wrote: In some cases, I suspect I may need to file the issue against upstream Reitveld... any guidance? Thanks, -Darin

[chromium-dev] Dev Channel Release cut at 15751

2009-05-11 Thread Jon
The Dev Channel release 2.0.180.0 has been cut at CL 15751. See http://src.chromium.org/viewvc/chrome/branches/180/ for all of the CLs from DEPS. Jon --~--~-~--~~~---~--~~ Chromium Developers mailing list: chromium-dev@googlegroups.com View archives, change email

[chromium-dev] Re: What is the best way to file bugs against codereview.chromium.org?

2009-05-11 Thread Darin Fisher
I don't have permission to CC you. Here's the issue I filed: http://code.google.com/p/rietveld/issues/detail?id=114 -Darin On Mon, May 11, 2009 at 10:22 AM, John Abd-El-Malek j...@chromium.org wrote: You can file a bug at http://code.google.com/p/rietveld/issues/list, and cc me. On Mon,

[chromium-dev] Re: Developing Chrome using tip-of-tree WebKit

2009-05-11 Thread Alex Russell
Does green builder output for this bot get archived? I ask because it would be nice to be able to specify a safesync URL for gclient. Regards On Mon, May 11, 2009 at 10:16 AM, Darin Fisher da...@chromium.org wrote: It is now fairly easy to develop Chrome using tip-of-tree WebKit. First

[chromium-dev] Re: Developing Chrome using tip-of-tree WebKit

2009-05-11 Thread Darin Fisher
On Mon, May 11, 2009 at 10:16 AM, Darin Fisher da...@chromium.org wrote: It is now fairly easy to develop Chrome using tip-of-tree WebKit. First before doing anything, you should make sure that the canary bot is green (at least the compile step):

[chromium-dev] Re: Developing Chrome using tip-of-tree WebKit

2009-05-11 Thread Darin Fisher
No, it doesn't. I agree that a safesync URL would be awesome. -Darin On Mon, May 11, 2009 at 10:46 AM, Alex Russell slightly...@google.com wrote: Does green builder output for this bot get archived? I ask because it would be nice to be able to specify a safesync URL for gclient. Regards

[chromium-dev] Re: [extensions] content-type

2009-05-11 Thread Nick Baum
I'd like to avoid the An unknown party wishes to install an extension. phrasing. It's scary and I don't think this actually helps the users make a decision (and often this will happen in legitimate cases where the developers simply can't set the MIME type). Could we do something like: Are you sure

[chromium-dev] Re: [extensions] content-type

2009-05-11 Thread Adam Barth
2009/5/11 Nick Baum nickb...@chromium.org: I'd like to avoid the An unknown party wishes to install an extension. phrasing. It's scary and I don't think this actually helps the users make a decision (and often this will happen in legitimate cases where the developers simply can't set the

[chromium-dev] Re: [extensions] content-type

2009-05-11 Thread Nick Baum
Not all extensions will be hosted in the gallery, some will be private (hosted on intranet, etc). -Nick On Mon, May 11, 2009 at 11:21 AM, Adam Barth aba...@chromium.org wrote: 2009/5/11 Nick Baum nickb...@chromium.org: I'd like to avoid the An unknown party wishes to install an extension.

[chromium-dev] Re: [extensions] content-type

2009-05-11 Thread Adam Barth
On Mon, May 11, 2009 at 12:02 PM, Aaron Boodman a...@chromium.org wrote: On Mon, May 11, 2009 at 11:59 AM, Darin Fisher da...@chromium.org wrote: We should use the same messaging that we use for downloaded executables.  Or, at least we should not make downloaded extensions seem less scary

[chromium-dev] Re: [extensions] content-type

2009-05-11 Thread Peter Kasting
On Mon, May 11, 2009 at 12:02 PM, Aaron Boodman a...@chromium.org wrote: That is a good idea. We could just use the same download UI and everything. When you click yes in the shelf, it just leads to the normal install dialog. Note, the plan is to change when the download prompting occurs to

[chromium-dev] Chromium Valgrind Fixit Day!

2009-05-11 Thread Dan Kegel
We've been using Valgrind to find memory leaks, pointer errors, and race conditions in Chromium on Mac and Linux for a while now. (See the valgrind bots at http://build.chromium.org.) That's cool, but it would be even cooler if we actually fixed the problems Valgrind has found. According to

[chromium-dev] VS2008 via gyp

2009-05-11 Thread Bradley Nelson
Hi All, I've just dropped in a change to gyp that will generate visual studio 2008 style projects (really just messes with the version numbers), if vs2008 is detected locally. This behavior is disabled on the buildbots at the moment. If this gets in your way you can control it with the

[chromium-dev] Re: Need help in finding a performance problem...

2009-05-11 Thread Evan Martin
On Sat, May 9, 2009 at 10:41 AM, Darin Fisher da...@chromium.org wrote: At a high level, you're using one TransportDIB per rectangle, but it should be one per message (with multiple rects worth of image data inside). You can't really use any benchmarking results while this is the case. I

[chromium-dev] Can we keep all generated files in a single directory?

2009-05-11 Thread Scott Violet
$ svn status ? media/media_player.scons ? webkit/webkit_strings.scons ? webkit/inspector_resources.scons ? build/temp_gyp/d8_js2c.scons ? build/temp_gyp/v8.scons ? build/temp_gyp/v8_main.scons ? build/temp_gyp/js2c.scons ?

[chromium-dev] Re: Need help in finding a performance problem...

2009-05-11 Thread Darin Fisher
On Mon, May 11, 2009 at 3:16 PM, Evan Martin e...@chromium.org wrote: On Sat, May 9, 2009 at 10:41 AM, Darin Fisher da...@chromium.org wrote: At a high level, you're using one TransportDIB per rectangle, but it should be one per message (with multiple rects worth of image data inside). You

[chromium-dev] Re: Can we keep all generated files in a single directory?

2009-05-11 Thread Nicolas Sylvain
The current pattern that we used was to tell svn to ignore all generated files. Looks like we forgot to ignore a bunch on linux! Nicolas On Mon, May 11, 2009 at 3:23 PM, Scott Violet s...@chromium.org wrote: $ svn status ? media/media_player.scons ? webkit/webkit_strings.scons ?

[chromium-dev] Re: build error

2009-05-11 Thread Ojan Vafai
Nope. I have yet to find a fix for this. That said, I've been working on WebKit stuff recently, so I haven't tried too hard. The other guy in this office who had the same error also hasn't found a fix. Please let the list know if you figure out what's wrong as I expect we're not the last people

[chromium-dev] Re: Speed up linking

2009-05-11 Thread Evan Martin
On Tue, May 5, 2009 at 11:09 PM, Leith Bade le...@leithalweapon.geek.nz wrote: How many seperate so's do you build? And what code compiles to where? It's identical to the current setup, but building .so's in every place we build a .a. (Maybe that's called a .lib on Windows?) In the Linux

[chromium-dev] Re: Need help in finding a performance problem...

2009-05-11 Thread Marc-Andre Decoste
However, I think that means if you leave the TransportDIB as the union of all the dirty rects, everything should Just Work. So your change becomes sending one unioned dirty rect image of pixel data, some of which that may not have actually been drawn to, along with an array of actually

[chromium-dev] Re: Need help in finding a performance problem...

2009-05-11 Thread Evan Martin
On Mon, May 11, 2009 at 5:40 PM, Marc-Andre Decoste m...@chromium.org wrote: However, I think that means if you leave the TransportDIB as the union of all the dirty rects, everything should Just Work.  So your change becomes sending one unioned dirty rect image of pixel data, some of which

[chromium-dev] Re: Need help in finding a performance problem...

2009-05-11 Thread Marc-Andre Decoste
Salut Darin, this why I changed my initial approach (which was to send an array of smaller bitmaps alongside the array of dirty rects), to use a single bitmap with only the dirty rects drawn on it... To overcome a weird intermittent bug I was getting with our current usage of StretchDIBits,

[chromium-dev] Re: Need help in finding a performance problem...

2009-05-11 Thread Marc-Andre Decoste
Feel free to ping delme/del agl if you need help on Linux. ;) Will do... thanks for the offer :-) BYE MAD On Mon, May 11, 2009 at 8:42 PM, Evan Martin e...@chromium.org wrote: On Mon, May 11, 2009 at 5:40 PM, Marc-Andre Decoste m...@chromium.org wrote: However, I think that means if

[chromium-dev] Re: VS2008 via gyp

2009-05-11 Thread Tommi
awesome! :) thanks brad On Mon, May 11, 2009 at 5:51 PM, Bradley Nelson bradnel...@google.comwrote: Hi All, I've just dropped in a change to gyp that will generate visual studio 2008 style projects (really just messes with the version numbers), if vs2008 is detected locally. This behavior

[chromium-dev] Re: CIA-bot on #chromium?

2009-05-11 Thread Mohamed Mansour
I would say we do it. I would like to see statuses of checkins live. Instead of no sort of notifications in the build bot page other than the auto refresh. I personally like to learn from others on how they do their fixes. And it is kinda cool to see it in the channel (like most other open source

[chromium-dev] Re: VS2008 via gyp

2009-05-11 Thread Mohamed Mansour
Awesome thanks! I was waiting for this for a long time. Too bad I just switched to Linux completely 11 minutes ago! -- Mohamed Mansour On Mon, May 11, 2009 at 10:43 PM, Tommi to...@google.com wrote: awesome! :) thanks brad On Mon, May 11, 2009 at 5:51 PM, Bradley Nelson