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

Side by Side Diff: content/browser/indexed_db/indexed_db_database_callbacks.cc

Issue 17840006: Move IndexedDB files out of in_process_webkit (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/browser/in_process_webkit/indexed_db_database_callbacks.h" 5 #include "content/browser/indexed_db/indexed_db_database_callbacks.h"
6 6
7 #include "base/memory/scoped_vector.h" 7 #include "base/memory/scoped_vector.h"
8 #include "content/browser/in_process_webkit/indexed_db_dispatcher_host.h" 8 #include "content/browser/indexed_db/indexed_db_dispatcher_host.h"
9 #include "content/common/indexed_db/indexed_db_messages.h" 9 #include "content/common/indexed_db/indexed_db_messages.h"
10 #include "third_party/WebKit/public/platform/WebIDBDatabaseError.h" 10 #include "third_party/WebKit/public/platform/WebIDBDatabaseError.h"
11 11
12 namespace content { 12 namespace content {
13 13
14 IndexedDBDatabaseCallbacks::IndexedDBDatabaseCallbacks( 14 IndexedDBDatabaseCallbacks::IndexedDBDatabaseCallbacks(
15 IndexedDBDispatcherHost* dispatcher_host, 15 IndexedDBDispatcherHost* dispatcher_host,
16 int ipc_thread_id, 16 int ipc_thread_id,
17 int ipc_database_callbacks_id) 17 int ipc_database_callbacks_id)
18 : dispatcher_host_(dispatcher_host), 18 : dispatcher_host_(dispatcher_host),
(...skipping 27 matching lines...) Expand all
46 46
47 void IndexedDBDatabaseCallbacks::onComplete(long long host_transaction_id) { 47 void IndexedDBDatabaseCallbacks::onComplete(long long host_transaction_id) {
48 dispatcher_host_->FinishTransaction(host_transaction_id, true); 48 dispatcher_host_->FinishTransaction(host_transaction_id, true);
49 dispatcher_host_->Send(new IndexedDBMsg_DatabaseCallbacksComplete( 49 dispatcher_host_->Send(new IndexedDBMsg_DatabaseCallbacksComplete(
50 ipc_thread_id_, 50 ipc_thread_id_,
51 ipc_database_callbacks_id_, 51 ipc_database_callbacks_id_,
52 dispatcher_host_->RendererTransactionId(host_transaction_id))); 52 dispatcher_host_->RendererTransactionId(host_transaction_id)));
53 } 53 }
54 54
55 } // namespace content 55 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698