OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |