| 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 66367b6c5ae2e3a25030708549142db52b0b7a71..e55e9d620d113d33cff9ca71213d1fc3e42113d8 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,
|
|
|