OSDN Git Service

Merge WebKit at r71558: Initial merge by git.
[android-x86/external-webkit.git] / WebKit / chromium / src / WebIDBTransactionImpl.h
index a9bde68..b26b3ac 100644 (file)
@@ -33,8 +33,6 @@
 #include <wtf/PassRefPtr.h>
 #include <wtf/RefPtr.h>
 
-namespace WebCore { class IDBTransactionBackendInterface; }
-
 namespace WebKit {
 
 // See comment in WebIndexedDatabase for a high level overview these classes.
@@ -46,9 +44,11 @@ public:
     virtual int mode() const;
     virtual WebIDBObjectStore* objectStore(const WebString& name);
     virtual void abort();
-    virtual int id() const;
+    virtual void didCompleteTaskEvents();
     virtual void setCallbacks(WebIDBTransactionCallbacks*);
 
+    virtual WebCore::IDBTransactionBackendInterface* getIDBTransactionBackendInterface() const;
+
 private:
     WTF::RefPtr<WebCore::IDBTransactionBackendInterface> m_backend;
 };