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

Unified Diff: content/browser/in_process_webkit/indexed_db_dispatcher_host.h

Issue 7692006: IndexedDB API cleanup. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Copyright presubmit Created 9 years, 4 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/browser/in_process_webkit/indexed_db_dispatcher_host.h
diff --git a/content/browser/in_process_webkit/indexed_db_dispatcher_host.h b/content/browser/in_process_webkit/indexed_db_dispatcher_host.h
index dd0737daf630deb725bccb3ef885aa8a49dda6c1..ae77824b9b2a236710d91d360f078ad55be94d41 100644
--- a/content/browser/in_process_webkit/indexed_db_dispatcher_host.h
+++ b/content/browser/in_process_webkit/indexed_db_dispatcher_host.h
@@ -112,7 +112,7 @@ class IndexedDBDispatcherHost : public BrowserMessageFilter {
WebKit::WebExceptionCode* ec);
void OnTransaction(int32 idb_database_id,
const std::vector<string16>& names,
- int32 mode, int32 timeout,
+ int32 mode,
int32* idb_transaction_id,
WebKit::WebExceptionCode* ec);
void OnOpen(int32 idb_database_id, int32 response_id);
@@ -218,8 +218,7 @@ class IndexedDBDispatcherHost : public BrowserMessageFilter {
void OnKey(int32 idb_object_store_id, IndexedDBKey* key);
void OnPrimaryKey(int32 idb_object_store_id, IndexedDBKey* primary_key);
void OnValue(int32 idb_object_store_id,
- SerializedScriptValue* script_value,
- IndexedDBKey* key);
+ SerializedScriptValue* script_value);
void OnUpdate(int32 idb_object_store_id,
int32 response_id,
const SerializedScriptValue& value,

Powered by Google App Engine
This is Rietveld 408576698