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_INDEXED_DB_INDEXED_DB_DISPATCHER_HOST_H_ | 5 #ifndef CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DISPATCHER_HOST_H_ |
6 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DISPATCHER_HOST_H_ | 6 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DISPATCHER_HOST_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
13 #include "base/id_map.h" | 13 #include "base/id_map.h" |
14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
15 #include "content/browser/fileapi/chrome_blob_storage_context.h" | 15 #include "content/browser/fileapi/chrome_blob_storage_context.h" |
16 #include "content/public/browser/browser_message_filter.h" | 16 #include "content/public/browser/browser_message_filter.h" |
17 #include "net/url_request/url_request_context_getter.h" | 17 #include "net/url_request/url_request_context_getter.h" |
| 18 #include "storage/browser/blob/blob_data_handle.h" |
18 #include "url/gurl.h" | 19 #include "url/gurl.h" |
19 #include "webkit/browser/blob/blob_data_handle.h" | |
20 | 20 |
21 struct IndexedDBDatabaseMetadata; | 21 struct IndexedDBDatabaseMetadata; |
22 struct IndexedDBHostMsg_DatabaseCount_Params; | 22 struct IndexedDBHostMsg_DatabaseCount_Params; |
23 struct IndexedDBHostMsg_DatabaseCreateIndex_Params; | 23 struct IndexedDBHostMsg_DatabaseCreateIndex_Params; |
24 struct IndexedDBHostMsg_DatabaseCreateObjectStore_Params; | 24 struct IndexedDBHostMsg_DatabaseCreateObjectStore_Params; |
25 struct IndexedDBHostMsg_DatabaseCreateTransaction_Params; | 25 struct IndexedDBHostMsg_DatabaseCreateTransaction_Params; |
26 struct IndexedDBHostMsg_DatabaseDeleteRange_Params; | 26 struct IndexedDBHostMsg_DatabaseDeleteRange_Params; |
27 struct IndexedDBHostMsg_DatabaseGet_Params; | 27 struct IndexedDBHostMsg_DatabaseGet_Params; |
28 struct IndexedDBHostMsg_DatabaseOpenCursor_Params; | 28 struct IndexedDBHostMsg_DatabaseOpenCursor_Params; |
29 struct IndexedDBHostMsg_DatabasePut_Params; | 29 struct IndexedDBHostMsg_DatabasePut_Params; |
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
277 | 277 |
278 // Used to set file permissions for blob storage. | 278 // Used to set file permissions for blob storage. |
279 int ipc_process_id_; | 279 int ipc_process_id_; |
280 | 280 |
281 DISALLOW_IMPLICIT_CONSTRUCTORS(IndexedDBDispatcherHost); | 281 DISALLOW_IMPLICIT_CONSTRUCTORS(IndexedDBDispatcherHost); |
282 }; | 282 }; |
283 | 283 |
284 } // namespace content | 284 } // namespace content |
285 | 285 |
286 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DISPATCHER_HOST_H_ | 286 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DISPATCHER_HOST_H_ |
OLD | NEW |