Index: Source/modules/indexeddb/IDBObjectStore.h |
diff --git a/Source/modules/indexeddb/IDBObjectStore.h b/Source/modules/indexeddb/IDBObjectStore.h |
index e325f6e8f1ff2f8a7ff76e5f846a3bf018edead0..ecd8d24a82d716d23216acb9e3ec6568ace566b4 100644 |
--- a/Source/modules/indexeddb/IDBObjectStore.h |
+++ b/Source/modules/indexeddb/IDBObjectStore.h |
@@ -88,10 +88,10 @@ public: |
IDBRequest* count(ScriptState*, const ScriptValue& range, ExceptionState&); |
// Used by IDBCursor::update(): |
- IDBRequest* put(ScriptState*, blink::WebIDBPutMode, IDBAny* source, ScriptValue&, IDBKey*, ExceptionState&); |
+ IDBRequest* put(ScriptState*, WebIDBPutMode, IDBAny* source, ScriptValue&, IDBKey*, ExceptionState&); |
// Used internally and by InspectorIndexedDBAgent: |
- IDBRequest* openCursor(ScriptState*, IDBKeyRange*, blink::WebIDBCursorDirection, blink::WebIDBTaskType = blink::WebIDBTaskTypeNormal); |
+ IDBRequest* openCursor(ScriptState*, IDBKeyRange*, WebIDBCursorDirection, WebIDBTaskType = WebIDBTaskTypeNormal); |
void markDeleted() { m_deleted = true; } |
bool isDeleted() const { return m_deleted; } |
@@ -102,14 +102,14 @@ public: |
typedef HeapVector<Member<IDBKey> > IndexKeys; |
- blink::WebIDBDatabase* backendDB() const; |
+ WebIDBDatabase* backendDB() const; |
private: |
IDBObjectStore(const IDBObjectStoreMetadata&, IDBTransaction*); |
IDBIndex* createIndex(ScriptState*, const String& name, const IDBKeyPath&, const Dictionary&, ExceptionState&); |
IDBIndex* createIndex(ScriptState*, const String& name, const IDBKeyPath&, bool unique, bool multiEntry, ExceptionState&); |
- IDBRequest* put(ScriptState*, blink::WebIDBPutMode, IDBAny* source, ScriptValue&, const ScriptValue& key, ExceptionState&); |
+ IDBRequest* put(ScriptState*, WebIDBPutMode, IDBAny* source, ScriptValue&, const ScriptValue& key, ExceptionState&); |
int64_t findIndexId(const String& name) const; |
bool containsIndex(const String& name) const |