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

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: Remove dead code 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 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,

Powered by Google App Engine
This is Rietveld 408576698