summaryrefslogtreecommitdiff
path: root/Source/WebKit/chromium/public/WebIDBDatabase.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebKit/chromium/public/WebIDBDatabase.h')
-rw-r--r--Source/WebKit/chromium/public/WebIDBDatabase.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/Source/WebKit/chromium/public/WebIDBDatabase.h b/Source/WebKit/chromium/public/WebIDBDatabase.h
index f53b02e39..b39853416 100644
--- a/Source/WebKit/chromium/public/WebIDBDatabase.h
+++ b/Source/WebKit/chromium/public/WebIDBDatabase.h
@@ -28,7 +28,6 @@
#include "WebDOMStringList.h"
#include "WebExceptionCode.h"
-#include "WebIDBKeyPath.h"
#include "platform/WebCommon.h"
namespace WebKit {
@@ -36,6 +35,7 @@ namespace WebKit {
class WebFrame;
class WebIDBCallbacks;
class WebIDBDatabaseCallbacks;
+class WebIDBKeyPath;
class WebIDBObjectStore;
class WebIDBTransaction;
@@ -59,12 +59,6 @@ public:
WEBKIT_ASSERT_NOT_REACHED();
return WebDOMStringList();
}
- // FIXME: Remove WebString keyPath overload once callers are updated.
- // http://webkit.org/b/84207
- virtual WebIDBObjectStore* createObjectStore(const WebString& name, const WebString& keyPath, bool autoIncrement, const WebIDBTransaction& transaction, WebExceptionCode& ec)
- {
- return createObjectStore(name, WebIDBKeyPath(keyPath), autoIncrement, transaction, ec);
- }
virtual WebIDBObjectStore* createObjectStore(const WebString&, const WebIDBKeyPath&, bool, const WebIDBTransaction&, WebExceptionCode&)
{
WEBKIT_ASSERT_NOT_REACHED();