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

Unified Diff: content/browser/in_process_webkit/indexed_db_callbacks.cc

Issue 11316205: Remove setVersion plumbing from chromium (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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_callbacks.cc
diff --git a/content/browser/in_process_webkit/indexed_db_callbacks.cc b/content/browser/in_process_webkit/indexed_db_callbacks.cc
index 9244e07b8945c59e44015c346c405e64a71272df..5a16fa375e81ee8f573371ae0430f1e9f3f016ec 100644
--- a/content/browser/in_process_webkit/indexed_db_callbacks.cc
+++ b/content/browser/in_process_webkit/indexed_db_callbacks.cc
@@ -39,24 +39,6 @@ void IndexedDBCallbacksBase::onBlocked() {
response_id_));
}
-IndexedDBCallbacksTransaction::IndexedDBCallbacksTransaction(
- IndexedDBDispatcherHost* dispatcher_host,
- int32 thread_id,
- int32 response_id,
- const GURL& origin_url)
- : IndexedDBCallbacksBase(dispatcher_host, thread_id, response_id),
- origin_url_(origin_url) {
-}
-
-void IndexedDBCallbacksTransaction::onSuccess(
- WebKit::WebIDBTransaction* idb_object) {
- int32 object_id =
- dispatcher_host()->Add(idb_object, thread_id(), origin_url_);
- dispatcher_host()->Send(
- new IndexedDBMsg_CallbacksSuccessIDBTransaction(thread_id(),
- response_id(), object_id));
-}
-
IndexedDBCallbacksDatabase::IndexedDBCallbacksDatabase(
IndexedDBDispatcherHost* dispatcher_host,
int32 thread_id,

Powered by Google App Engine
This is Rietveld 408576698