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

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

Issue 8747002: Dispatch IndexedDB IPC messages to worker threads (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove OVERRIDE from dtor Created 9 years 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_transaction_callbacks.h
diff --git a/content/browser/in_process_webkit/indexed_db_transaction_callbacks.h b/content/browser/in_process_webkit/indexed_db_transaction_callbacks.h
index 60cbfff661de78ce377db507995bbe00606ff2fb..9c424b0885dd7fc5b3f34d9637dff667008f8e70 100644
--- a/content/browser/in_process_webkit/indexed_db_transaction_callbacks.h
+++ b/content/browser/in_process_webkit/indexed_db_transaction_callbacks.h
@@ -15,6 +15,7 @@ class IndexedDBTransactionCallbacks
: public WebKit::WebIDBTransactionCallbacks {
public:
IndexedDBTransactionCallbacks(IndexedDBDispatcherHost* dispatcher_host,
+ int thread_id,
int transaction_id);
virtual ~IndexedDBTransactionCallbacks();
@@ -24,6 +25,7 @@ class IndexedDBTransactionCallbacks
private:
scoped_refptr<IndexedDBDispatcherHost> dispatcher_host_;
+ int thread_id_;
int transaction_id_;
};

Powered by Google App Engine
This is Rietveld 408576698