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

Side by Side Diff: content/browser/indexed_db/indexed_db_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_callbacks.h" 5 #include "content/browser/indexed_db/indexed_db_callbacks.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <vector> 8 #include <vector>
9 9
10 #include "content/browser/indexed_db/indexed_db_metadata.h" 10 #include "content/browser/indexed_db/indexed_db_metadata.h"
11 #include "content/browser/indexed_db/webidbdatabase_impl.h" 11 #include "content/browser/indexed_db/webidbdatabase_impl.h"
12 #include "content/common/indexed_db/indexed_db_messages.h" 12 #include "content/common/indexed_db/indexed_db_messages.h"
13 #include "webkit/browser/quota/quota_manager.h" 13 #include "webkit/browser/quota/quota_manager.h"
14 14
15 using WebKit::WebData; 15 using WebKit::WebData;
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 ipc_thread_id(), ipc_callbacks_id())); 287 ipc_thread_id(), ipc_callbacks_id()));
288 } 288 }
289 289
290 void IndexedDBCallbacks<std::vector<char> >::onSuccess( 290 void IndexedDBCallbacks<std::vector<char> >::onSuccess(
291 const IndexedDBKey& value) { 291 const IndexedDBKey& value) {
292 dispatcher_host()->Send(new IndexedDBMsg_CallbacksSuccessIndexedDBKey( 292 dispatcher_host()->Send(new IndexedDBMsg_CallbacksSuccessIndexedDBKey(
293 ipc_thread_id(), ipc_callbacks_id(), value)); 293 ipc_thread_id(), ipc_callbacks_id(), value));
294 } 294 }
295 295
296 } // namespace content 296 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698