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

andreip at google.com andreip at google.com
Wed Dec 22 13:41:10 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit e0d2dfc2767b865275af2aa0e9dba358ddbba254
Author: andreip at google.com <andreip at google.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Sep 23 15:13:18 2010 +0000

    2010-09-23  Andrei Popescu  <andreip at google.com>
    
            Reviewed by Jeremy Orlow.
    
            [Chromium] Build broken due to missing include in IDBTransactionBackendImpl.h
            https://bugs.webkit.org/show_bug.cgi?id=46352
    
            No new tests needed, build fix.
    
            * storage/IDBTransaction.cpp:
            (WebCore::IDBTransaction::objectStore):
            * storage/IDBTransactionBackendImpl.h:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@68139 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 2db16af..0b216d1 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -2,6 +2,19 @@
 
         Reviewed by Jeremy Orlow.
 
+        [Chromium] Build broken due to missing include in IDBTransactionBackendImpl.h
+        https://bugs.webkit.org/show_bug.cgi?id=46352
+
+        No new tests needed, build fix.
+
+        * storage/IDBTransaction.cpp:
+        (WebCore::IDBTransaction::objectStore):
+        * storage/IDBTransactionBackendImpl.h:
+
+2010-09-23  Andrei Popescu  <andreip at google.com>
+
+        Reviewed by Jeremy Orlow.
+
         IDBObjectStore::get should run in a transaction.
         https://bugs.webkit.org/show_bug.cgi?id=44700
 
diff --git a/WebCore/storage/IDBTransaction.cpp b/WebCore/storage/IDBTransaction.cpp
index ed76281..a223b7f 100644
--- a/WebCore/storage/IDBTransaction.cpp
+++ b/WebCore/storage/IDBTransaction.cpp
@@ -68,7 +68,7 @@ PassRefPtr<IDBObjectStore> IDBTransaction::objectStore(const String& name, const
 {
     RefPtr<IDBObjectStoreBackendInterface> objectStoreBackend = m_backend->objectStore(name);
     if (!objectStoreBackend) {
-        throwError(IDBDatabaseException::NOT_ALLOWED_ERR);
+        // FIXME: throw IDBDatabaseException::NOT_ALLOWED_ERR.
         return 0;
     }
     RefPtr<IDBObjectStore> objectStore = IDBObjectStore::create(objectStoreBackend, m_backend.get());
diff --git a/WebCore/storage/IDBTransactionBackendImpl.h b/WebCore/storage/IDBTransactionBackendImpl.h
index 6d9a3ac..c037a11 100644
--- a/WebCore/storage/IDBTransactionBackendImpl.h
+++ b/WebCore/storage/IDBTransactionBackendImpl.h
@@ -31,7 +31,8 @@
 #include "DOMStringList.h"
 #include "IDBTransactionBackendInterface.h"
 #include "IDBTransactionCallbacks.h"
-#include <SQLiteTransaction.h>
+#include "SQLiteTransaction.h"
+#include "Timer.h"
 #include <wtf/Deque.h>
 #include <wtf/RefPtr.h>
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list