Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(576)

Unified Diff: content/common/indexed_db/indexed_db_dispatcher.h

Issue 11194026: Flush out IPC for onSuccess() / onSuccess(long long) (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: formatting nit Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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,
« no previous file with comments | « content/browser/in_process_webkit/indexed_db_callbacks.cc ('k') | content/common/indexed_db/indexed_db_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698