[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

jorlow at chromium.org jorlow at chromium.org
Wed Dec 22 16:25:00 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 6dfd455aaaa455a66de4a871aaf31093b47f0ae4
Author: jorlow at chromium.org <jorlow at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Nov 23 11:14:12 2010 +0000

    2010-11-23  Jeremy Orlow  <jorlow at chromium.org>
    
            Reviewed by Steve Block.
    
            Remove unimplemented (and untested) methods from IndexedDB
            https://bugs.webkit.org/show_bug.cgi?id=49911
    
            * storage/IDBCursor.idl:
            * storage/IDBDatabase.idl:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@72593 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 5400977..a1f72a8 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2010-11-23  Jeremy Orlow  <jorlow at chromium.org>
+
+        Reviewed by Steve Block.
+
+        Remove unimplemented (and untested) methods from IndexedDB
+        https://bugs.webkit.org/show_bug.cgi?id=49911
+
+        * storage/IDBCursor.idl:
+        * storage/IDBDatabase.idl:
+
 2010-11-18  Satish Sampath  <satish at chromium.org>
 
         Reviewed by Jeremy Orlow.
diff --git a/WebCore/storage/IDBCursor.idl b/WebCore/storage/IDBCursor.idl
index 0cef3f9..2d250d5 100644
--- a/WebCore/storage/IDBCursor.idl
+++ b/WebCore/storage/IDBCursor.idl
@@ -37,11 +37,13 @@ module storage {
         readonly attribute IDBKey key;
         readonly attribute IDBAny value;
 
-        [CallWith=ScriptExecutionContext] IDBRequest update(in SerializedScriptValue value)
-            raises (IDBDatabaseException);
+        // FIXME: Implement.
+        //[CallWith=ScriptExecutionContext] IDBRequest update(in SerializedScriptValue value)
+        //    raises (IDBDatabaseException);
         [ImplementationFunction=continueFunction] void continue(in [Optional] IDBKey key)
             raises (IDBDatabaseException);
-        [CallWith=ScriptExecutionContext] IDBRequest remove()
-            raises (IDBDatabaseException);
+        // FIXME: Implement.
+        //[CallWith=ScriptExecutionContext] IDBRequest remove()
+        //    raises (IDBDatabaseException);
     };
 }
diff --git a/WebCore/storage/IDBDatabase.idl b/WebCore/storage/IDBDatabase.idl
index b529c9a..1ab5b0b 100644
--- a/WebCore/storage/IDBDatabase.idl
+++ b/WebCore/storage/IDBDatabase.idl
@@ -40,7 +40,8 @@ module storage {
             raises (IDBDatabaseException);
         [CallWith=ScriptExecutionContext] IDBTransaction transaction (in [Optional] DOMStringList storeNames, in [Optional] unsigned short mode, in [Optional] unsigned long timeout)
             raises (IDBDatabaseException);
-        void close();
+        // FIXME: Implement.
+        //void close();
     };
 
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list