[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.19-706-ge5415e9

jorlow at chromium.org jorlow at chromium.org
Thu Feb 4 21:35:58 UTC 2010


The following commit has been merged in the webkit-1.1 branch:
commit 5433cd81a684300e7fecbf719b62a7a0dc39d0fc
Author: jorlow at chromium.org <jorlow at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Feb 2 02:42:14 2010 +0000

    2010-01-29  Jeremy Orlow  <jorlow at chromium.org>
    
            Reviewed by Nate Chapin.
    
            [V8] Add compile time guards for IndexedDB custom functions
            https://bugs.webkit.org/show_bug.cgi?id=34368
    
            * bindings/v8/custom/V8IDBRequestCustom.cpp:
            * bindings/v8/custom/V8IndexedDatabaseRequestCustom.cpp:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@54190 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index c8134e7..e9b931e 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2010-01-29  Jeremy Orlow  <jorlow at chromium.org>
+
+        Reviewed by Nate Chapin.
+
+        [V8] Add compile time guards for IndexedDB custom functions
+        https://bugs.webkit.org/show_bug.cgi?id=34368
+
+        * bindings/v8/custom/V8IDBRequestCustom.cpp:
+        * bindings/v8/custom/V8IndexedDatabaseRequestCustom.cpp:
+
 2010-01-29  Gavin Barraclough  <barraclough at apple.com>
 
         Reviewed by Sam Weinig + Oliver Hunt.
diff --git a/WebCore/bindings/v8/custom/V8IDBRequestCustom.cpp b/WebCore/bindings/v8/custom/V8IDBRequestCustom.cpp
index 5ee9542..ccf4d0e 100644
--- a/WebCore/bindings/v8/custom/V8IDBRequestCustom.cpp
+++ b/WebCore/bindings/v8/custom/V8IDBRequestCustom.cpp
@@ -29,6 +29,8 @@
  */
 
 #include "config.h"
+
+#if ENABLE(INDEXED_DATABASE)
 #include "V8IDBRequest.h"
 
 #include "SerializedScriptValue.h"
@@ -47,3 +49,5 @@ v8::Handle<v8::Value> V8IDBRequest::resultAccessorGetter(v8::Local<v8::String> n
 }
 
 } // namespace WebCore
+
+#endif
diff --git a/WebCore/bindings/v8/custom/V8IndexedDatabaseRequestCustom.cpp b/WebCore/bindings/v8/custom/V8IndexedDatabaseRequestCustom.cpp
index 66220ea..0fd182c 100644
--- a/WebCore/bindings/v8/custom/V8IndexedDatabaseRequestCustom.cpp
+++ b/WebCore/bindings/v8/custom/V8IndexedDatabaseRequestCustom.cpp
@@ -29,6 +29,8 @@
  */
 
 #include "config.h"
+
+#if ENABLE(INDEXED_DATABASE)
 #include "V8IndexedDatabaseRequest.h"
 
 #include "V8Binding.h"
@@ -55,3 +57,5 @@ v8::Handle<v8::Value> V8IndexedDatabaseRequest::openCallback(const v8::Arguments
 }
 
 } // namespace WebCore
+
+#endif

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list