[webkit-dev] Windows build issue with r110420

2012-03-12 Thread M Rahaman
Hi All, I am facing Windows build issue with r110420 for some files, the errors are as mentioned below \RenderThemeSafari.cpp(43) : fatal error C1083: Cannot open include file: 'RetainPtr.h': source\webcore\platform\graphics\win\UniscribeController.h(32) : fatal error C1083: Cannot open incl

Re: [webkit-dev] Separating ENABLE(NOTIFICATIONS) and ENABLE(LEGACY_NOTIFICATIONS)

2012-03-12 Thread Adam Barth
That sounds like a good approach. Chromium will likely need to remember to disable NOTIFICATIONS on any upcoming release branches (until the work is complete). Adam On Mon, Mar 12, 2012 at 6:58 PM, Jon Lee wrote: > Hi WebKit! > > In order to ease the migration path for the nascent notification

[webkit-dev] Separating ENABLE(NOTIFICATIONS) and ENABLE(LEGACY_NOTIFICATIONS)

2012-03-12 Thread Jon Lee
Hi WebKit! In order to ease the migration path for the nascent notifications API, I'd like to separate the current dependency between NOTIFICATION and LEGACY_NOTIFICATIONS. Currently, in order to support the legacy API, both defines are needed, but ends up also including the new API. Since the

Re: [webkit-dev] An incremental approach (was Re: UPDATED Re: Version control survey)

2012-03-12 Thread Evan Martin
On Mon, Mar 12, 2012 at 4:10 AM, Tor Arne Vestbø wrote: > I've done some prototyping on how to do a smaller mirror, using git > submodules or tools such as git-annex or git-media. So far the issue is that > if you want to commit to SVN using git-svn none of these techniques can be > used, which ma

[webkit-dev] Windows IDL interoperability with non-C languages

2012-03-12 Thread Ashod Nakashian
IDL/Windows Webkittens, The Windows IDLs utilizes many Windows HANDLE types in their members. These handles are defined as void*, which is an opaque type. This is fine until one tries to import the WebKit COM into VB or a .Net environment only to discover that these handles are wrapped (read: r

Re: [webkit-dev] An incremental approach (was Re: UPDATED Re: Version control survey)

2012-03-12 Thread Tor Arne Vestbø
On 11.03.12 00:08, Alp Toker wrote: The way I see it, a better mirror would address: > *Author Names *The committer names don't have the full author name in the git mirror right now, just an SVN id. This info could be extracted out of a database or the ChangeLog message if one exists, during i

Re: [webkit-dev] How to enable or disable jit when building QtWebKit

2012-03-12 Thread Filip Pizlo
I believe that QtWebKit has the JSC JIT enabled by default. The way I disable the JIT if I need to is: 1) Open Source/JavaScriptCore/wtf/Platform.h 2) Insert the line "#define ENABLE_JIT 0" right after the "#include " -F On Mar 11, 2012, at 11:57 PM, Yongbing Huang wrote: > Hi all, > >