[chromium-dev] Re: cygwin setup_mount does not run automatically

2009-05-16 Thread Bradley Nelson
Hi Ben, I've just checked in a change that should cause that to get run at the right time. Please let me know if you see this issue again. -BradN On Fri, May 15, 2009 at 2:22 AM, Ben Harper wrote: > > Hi, > I don't know whether cygwin/setup_mount is supposed to run > automatically at some stag

[chromium-dev] Re: problem with gclient config on windows vista

2009-05-16 Thread Eeyore
I think gclient is just totally busted on Vista and Win7. My machine has SVN and Python installed already so gclient doesn't need to download them, and gclient still fails with the same errors. Completely fresh directory at e:\chrome with freshly unzipped depot_tools, this is what happens: E:\c

[chromium-dev] Re: Drawing code on Mac

2009-05-16 Thread Amanda Walker
The code to look at is in skia/ext/platform_device_mac.cc:123 and following (PlatformDeviceMac::LoadClippingRegionToCGContext). It calls CGContextClipToRect, but does not reset the clip path first, so we we end up with the behavior Stephen described. The best solution would be to do a save when

[chromium-dev] Re: Drawing code on Mac

2009-05-16 Thread Marc-Andre Decoste
Salut Stephen, thanks for the hint... Note that I have tried calling save/restore on the canvas around each sub-rect drawing... With no luck... I also tried to make the call to canvas->getTopPlatformDevice().accessBitmap(false); after every sub-rect... same thing... I guess I'll wait for A

[chromium-dev] Please use detailed string descriptions for the translators

2009-05-16 Thread Glen Murphy
A reminder: The 'desc' attribute for strings in our GRD files is used by the translators as a guide to help them translate your string - you should pretend that this attribute and the original string is all they have to go on, and that they have no other context. If your string needs to be small

[chromium-dev] Re: Run-Time Check Failures

2009-05-16 Thread Stephen White
Hi John, This is likely because skia's dependencies did not get correctly invalidated after the sync, and you're linking against the old version while compiling against the new (SkBitmap changed in size). While a clobber build is safest, you might be able to get away with just cleaning and rebuild

[chromium-dev] Re: cryptoht.h not found

2009-05-16 Thread Mohamed Mansour
Hi Craig, Of course :) I have compiled Chromium numerous times in all platforms. I always run gclient sync --force in the "~/chromium directory (which has src, according to the wiki). Maybe it is just a hickup at my end, I will see if it happens again in the future. Thanks! -- Mohamed Mansour

[chromium-dev] Re: Destruction of C++ objects attached to V8 objects

2009-05-16 Thread Marshall Greenblatt
On Sat, May 16, 2009 at 1:27 PM, Mike Belshe wrote: > You can create a weak reference to the object, and when the object is GC'd > in v8, the weak reference handler will get called. Check out the v8.h > documentation for weak references and it will probably make sense. > Mike > Hi Mike, So I g

[chromium-dev] Re: Drawing code on Mac

2009-05-16 Thread Amanda Walker
Yes, that's probably it. PlatformCanvasMac inherits from SkCanvas, but does most actual drawing with CoreGraphics. This should be fairly simple to fix--I can take a look at it on Sunday if no one else jumps on it first. --Amanda On Sat, May 16, 2009 at 2:13 PM, Stephen White wrote: > On Sat,

[chromium-dev] Re: Cross-Origin XHR request

2009-05-16 Thread Aaron Boodman
On Wed, May 13, 2009 at 10:06 PM, filthysock wrote: > > Hi everyone, > I just converted a greasemonkey script into an extension. Yeah, it > doesn't do any extensiony stuff yet, but maybe in the future. > > I'm trying to do a Cross-Origin XHR request, but i'm having a problem > with responses. > I

[chromium-dev] Re: Drawing code on Mac

2009-05-16 Thread Stephen White
On Sat, May 16, 2009 at 10:16 AM, Marc-Andre Decoste wrote: > Salut, > >I found the cause of the problem, but didn't find a cure yet.. The > SkCanvas::ClipRect() call with the replace Op doesn't seem to work more than > once... The first rect gets drawn on the cancas properly, but all subsequ

[chromium-dev] Re: Destruction of C++ objects attached to V8 objects

2009-05-16 Thread Mike Belshe
You can create a weak reference to the object, and when the object is GC'd in v8, the weak reference handler will get called. Check out the v8.h documentation for weak references and it will probably make sense. Mike On Fri, May 15, 2009 at 8:38 PM, Marshall Greenblatt wrote: > Hi All, > > I'm

[chromium-dev] Re: Committing from third_party/WebKit

2009-05-16 Thread Adam Barth
Ah, I'll give that a try. Adam On Sat, May 16, 2009 at 9:01 AM, Darin Fisher wrote: > prepare-ChangeLog doesn't work?  did you setup your .gclient so that > third_party/WebKit is just a normal pull from svn.webkit.org?  (see my > previous message to chromium-dev about how to do so if not.) > -

[chromium-dev] Re: Run-Time Check Failures

2009-05-16 Thread Adam Barth
When I've seen this before, I've needed to do a clobber build. Adam On Wed, May 13, 2009 at 5:21 PM, John Gregg wrote: > > I'm synced to 16009 (which is the latest good change according to > http://build.chromium.org/buildbot/continuous/LATEST/REVISION), and I > got everything built, but when

Fwd: [chromium-dev] Re: cryptoht.h not found

2009-05-16 Thread Craig Schlenter
+chromium-dev --Craig -- Forwarded message -- From: Craig Schlenter Date: Sat, May 16, 2009 at 3:39 PM Subject: Re: [chromium-dev] Re: cryptoht.h not found To: Mohamed Mansour Hi Mohamed The instructions at http://dev.chromium.org/developers/how-tos/get-the-code say "6. Upda

[chromium-dev] Re: Committing from third_party/WebKit

2009-05-16 Thread Darin Fisher
prepare-ChangeLog doesn't work? did you setup your .gclient so that third_party/WebKit is just a normal pull from svn.webkit.org? (see my previous message to chromium-dev about how to do so if not.) -darin On Fri, May 15, 2009 at 12:24 AM, Adam Barth wrote: > > Being able to commit to webkit.o

[chromium-dev] a solution to compile in VS 2008/2005 without killing the machine

2009-05-16 Thread nakro
if any of you wants, i have written just now a small program that set the priority of Cl.exe and Link.exe to IDLE so that it does not kill the Machine while you build you can also tell it to compile in parallel, but link only one module at a time i even write this C++ program using, what i hope a

[chromium-dev] Re: Drawing code on Mac

2009-05-16 Thread Marc-Andre Decoste
Salut, I found the cause of the problem, but didn't find a cure yet.. The SkCanvas::ClipRect() call with the replace Op doesn't seem to work more than once... The first rect gets drawn on the cancas properly, but all subsequent rects drawn on the same canvas with different clip rects seem to be

[chromium-dev] Re: adding a menu from an extension?

2009-05-16 Thread Erik Kay
On Sat, May 16, 2009 at 2:13 AM, Michael wrote: > > I was wondering the same myself but I think the cross-platform (and > toolkit) nature of chrome will make this difficult to implement? Not really. The fact that we have to build up specific extension APIs and UIs for this is what takes time (

[chromium-dev] Re: adding a menu from an extension?

2009-05-16 Thread Erik Kay
On Fri, May 15, 2009 at 6:58 AM, Mark Smith wrote: > > I am experimenting with extension development. It is exciting to see > quick progress is this area. > > I didn't see anything in the design documents about allowing > extensions to add menus (like the Page and Tools menu). Is that on > your

[chromium-dev] Re: como pongo el plugin flash de adobe?

2009-05-16 Thread Dean McNamee
Hola, Lo siento, pero no es possible usar Flash (o otros plugins) en Linux Chromium todavia. Tambien, chromium-dev es solo en Ingles. Basic plugin support currently works in the single-process "test_shell". We are still working on making Linux plugins work with Chrome's multi-process architect

[chromium-dev] Re: adding a menu from an extension?

2009-05-16 Thread Michael
I was wondering the same myself but I think the cross-platform (and toolkit) nature of chrome will make this difficult to implement? It would certainly make sense for some types of extensions. On the other hand, many extension authors seem to abuse the extension system (*cough* Firefox *cough*) an

[chromium-dev] cygwin setup_mount does not run automatically

2009-05-16 Thread Ben Harper
Hi, I don't know whether cygwin/setup_mount is supposed to run automatically at some stage of the checkout/build process, but for me it did not, and it took me a while to figure out that it was necessary. Initial symptom was this error: Can't locate strict.pm in @INC when trying to run dftables

[chromium-dev] base_unittests fail for NowSingleton

2009-05-16 Thread sunwangme
result:fail C:\temp\google_chromium\src\base\Release>base_unittests.exe -- gtest_filter="*Sys temMonitor*:*ObserverListThreadSafeTest.CrossThreadOb*" result:fail C:\temp\google_chromium\src\base\Release>base_unittests.exe -- gtest_filter="*Sys temMonitor*:*MessageLoopTest.Di*" result:ok C:\temp\

[chromium-dev] report bugs

2009-05-16 Thread sunwangme
report bugs --~--~-~--~~~---~--~~ Chromium Developers mailing list: chromium-dev@googlegroups.com View archives, change email options, or unsubscribe: http://groups.google.com/group/chromium-dev -~--~~~~--~~--~--~---

[chromium-dev] Build docs should mention cygwin/setup_mount.bat

2009-05-16 Thread Ben Harper
It took me a while to track this down, so I thought I'd mention it here. The first symptom was the error: Can't locate strict.pm in @INC while trying to run dftables. I don't know whether setup_mount.bat is supposed to run automatically, but I followed the checkout & build instructions, and it

[chromium-dev] Run-Time Check Failures

2009-05-16 Thread John Gregg
I'm synced to 16009 (which is the latest good change according to http://build.chromium.org/buildbot/continuous/LATEST/REVISION), and I got everything built, but when I run Chromium under Visual Studio I get an endless stream of: Run-Time Check Failure #2 - Stack around the variable 'bitmap' was

[chromium-dev] Cross-Origin XHR request

2009-05-16 Thread filthysock
Hi everyone, I just converted a greasemonkey script into an extension. Yeah, it doesn't do any extensiony stuff yet, but maybe in the future. I'm trying to do a Cross-Origin XHR request, but i'm having a problem with responses. It sends the request ok (data gets updated on the other server) but i

[chromium-dev] adding a menu from an extension?

2009-05-16 Thread Mark Smith
I am experimenting with extension development. It is exciting to see quick progress is this area. I didn't see anything in the design documents about allowing extensions to add menus (like the Page and Tools menu). Is that on your radar? Also, are you planning to allow extensions to add items

[chromium-dev] como pongo el plugin flash de adobe?

2009-05-16 Thread mama21mama
Hola, uso ubuntu ibex, y con el browser Chromium v2.0.181.0 pero no puedo visualizar algunas paginas que tienen flash de adobe. intente poner el plugin en esta ruta /usr/lib/chromium-browser/plugins pero no anda. si alguin me dice alguna informacion estare muy agradecido; saludos. --~--~-

[chromium-dev] Re: cryptoht.h not found

2009-05-16 Thread Mohamed Mansour
Weird, I just received this error while compiling a "fresh" build on linux. Downloaded the tarball, and hammer (clean). The first error I saw on the screen was: cd: 1: can't cd to /auto/filer28.mtvvolmtvhome51/chrome-svn/tarball/chromium/src/base Then it stated: /home/m0/chromium/src/base/crypto/