Index: content/common/indexed_db/indexed_db_dispatcher.h |
diff --git a/content/common/indexed_db/indexed_db_dispatcher.h b/content/common/indexed_db/indexed_db_dispatcher.h |
index e9adb14e6d82cae7b2c1fe757dc6886ac01163c6..42909affc17f962516dec8d1c7ce70e68018eca9 100644 |
--- a/content/common/indexed_db/indexed_db_dispatcher.h |
+++ b/content/common/indexed_db/indexed_db_dispatcher.h |
@@ -216,7 +216,6 @@ class CONTENT_EXPORT IndexedDBDispatcher |
FRIEND_TEST_ALL_PREFIXES(IndexedDBDispatcherTest, ValueSizeTest); |
// IDBCallback message handlers. |
- void OnSuccessNull(int32 response_id); |
void OnSuccessIDBDatabase(int32 thread_id, |
int32 response_id, |
int32 object_id); |
@@ -245,6 +244,13 @@ class CONTENT_EXPORT IndexedDBDispatcher |
const content::SerializedScriptValue& value, |
const content::IndexedDBKey& primary_key, |
const content::IndexedDBKeyPath& key_path); |
+ void OnSuccessInteger( |
+ int32 thread_id, |
+ int32 response_id, |
+ int64 value); |
+ void OnSuccessUndefined( |
+ int32 thread_id, |
+ int32 response_id); |
void OnError(int32 thread_id, |
int32 response_id, |
int code, |