Index: Source/modules/indexeddb/IDBCursorWithValue.h |
diff --git a/Source/modules/indexeddb/IDBCursorWithValue.h b/Source/modules/indexeddb/IDBCursorWithValue.h |
index 3ffce3c7b19e027910e2696f2c8372e841f1586d..02a7a7990eca24fbe12db1bb0afeed8e48bc19dd 100644 |
--- a/Source/modules/indexeddb/IDBCursorWithValue.h |
+++ b/Source/modules/indexeddb/IDBCursorWithValue.h |
@@ -40,7 +40,7 @@ class IDBTransaction; |
class IDBCursorWithValue FINAL : public IDBCursor { |
public: |
- static IDBCursorWithValue* create(PassOwnPtr<blink::WebIDBCursor>, blink::WebIDBCursorDirection, IDBRequest*, IDBAny* source, IDBTransaction*); |
+ static IDBCursorWithValue* create(PassOwnPtr<WebIDBCursor>, WebIDBCursorDirection, IDBRequest*, IDBAny* source, IDBTransaction*); |
virtual ~IDBCursorWithValue(); |
// The value attribute defined in the IDL is simply implemented in IDBCursor (but not exposed via |
@@ -50,7 +50,7 @@ public: |
virtual bool isCursorWithValue() const OVERRIDE { return true; } |
private: |
- IDBCursorWithValue(PassOwnPtr<blink::WebIDBCursor>, blink::WebIDBCursorDirection, IDBRequest*, IDBAny* source, IDBTransaction*); |
+ IDBCursorWithValue(PassOwnPtr<WebIDBCursor>, WebIDBCursorDirection, IDBRequest*, IDBAny* source, IDBTransaction*); |
}; |
DEFINE_TYPE_CASTS(IDBCursorWithValue, IDBCursor, cursor, cursor->isCursorWithValue(), cursor.isCursorWithValue()); |