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

Side by Side Diff: content/browser/in_process_webkit/indexed_db_dispatcher_host.h

Issue 15564008: Migrate the IndexedDB backend from Blink to Chromium (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Accessor naming, use LevelDBSlice ctor explicitly Created 7 years, 7 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 #ifndef CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_DISPATCHER_HOST_H_ 5 #ifndef CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_DISPATCHER_HOST_H_
6 #define CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_DISPATCHER_HOST_H_ 6 #define CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_DISPATCHER_HOST_H_
7 7
8 #include <map> 8 #include <map>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 12 matching lines...) Expand all
23 struct IndexedDBHostMsg_DatabaseOpenCursor_Params; 23 struct IndexedDBHostMsg_DatabaseOpenCursor_Params;
24 struct IndexedDBHostMsg_DatabasePut_Params; 24 struct IndexedDBHostMsg_DatabasePut_Params;
25 struct IndexedDBHostMsg_DatabaseSetIndexKeys_Params; 25 struct IndexedDBHostMsg_DatabaseSetIndexKeys_Params;
26 struct IndexedDBHostMsg_FactoryDeleteDatabase_Params; 26 struct IndexedDBHostMsg_FactoryDeleteDatabase_Params;
27 struct IndexedDBHostMsg_FactoryGetDatabaseNames_Params; 27 struct IndexedDBHostMsg_FactoryGetDatabaseNames_Params;
28 struct IndexedDBHostMsg_FactoryOpen_Params; 28 struct IndexedDBHostMsg_FactoryOpen_Params;
29 29
30 namespace WebKit { 30 namespace WebKit {
31 class WebIDBCursor; 31 class WebIDBCursor;
32 class WebIDBDatabase; 32 class WebIDBDatabase;
33 class WebIDBIndex;
34 class WebIDBObjectStore;
35 struct WebIDBMetadata; 33 struct WebIDBMetadata;
36 } 34 }
37 35
38 namespace content { 36 namespace content {
39 class IndexedDBContextImpl; 37 class IndexedDBContextImpl;
40 class IndexedDBKey; 38 class IndexedDBKey;
41 class IndexedDBKeyPath; 39 class IndexedDBKeyPath;
42 class IndexedDBKeyRange; 40 class IndexedDBKeyRange;
43 41
44 // Handles all IndexedDB related messages from a particular renderer process. 42 // Handles all IndexedDB related messages from a particular renderer process.
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 201
204 // Used to dispatch messages to the correct view host. 202 // Used to dispatch messages to the correct view host.
205 int ipc_process_id_; 203 int ipc_process_id_;
206 204
207 DISALLOW_IMPLICIT_CONSTRUCTORS(IndexedDBDispatcherHost); 205 DISALLOW_IMPLICIT_CONSTRUCTORS(IndexedDBDispatcherHost);
208 }; 206 };
209 207
210 } // namespace content 208 } // namespace content
211 209
212 #endif // CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_DISPATCHER_HOST_H_ 210 #endif // CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_DISPATCHER_HOST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698