OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/id_map.h" | 10 #include "base/id_map.h" |
11 #include "content/browser/browser_message_filter.h" | 11 #include "content/browser/browser_message_filter.h" |
12 #include "content/browser/in_process_webkit/webkit_context.h" | 12 #include "content/browser/in_process_webkit/webkit_context.h" |
13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebExceptionCode.h" | 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebExceptionCode.h" |
14 | 14 |
15 class IndexedDBKey; | 15 class IndexedDBKey; |
16 class NullableString16; | 16 class NullableString16; |
17 class Profile; | |
18 class SerializedScriptValue; | 17 class SerializedScriptValue; |
19 struct IndexedDBHostMsg_DatabaseCreateObjectStore_Params; | 18 struct IndexedDBHostMsg_DatabaseCreateObjectStore_Params; |
20 struct IndexedDBHostMsg_FactoryDeleteDatabase_Params; | 19 struct IndexedDBHostMsg_FactoryDeleteDatabase_Params; |
21 struct IndexedDBHostMsg_FactoryOpen_Params; | 20 struct IndexedDBHostMsg_FactoryOpen_Params; |
22 struct IndexedDBHostMsg_IndexOpenCursor_Params; | 21 struct IndexedDBHostMsg_IndexOpenCursor_Params; |
23 struct IndexedDBHostMsg_ObjectStoreCreateIndex_Params; | 22 struct IndexedDBHostMsg_ObjectStoreCreateIndex_Params; |
24 struct IndexedDBHostMsg_ObjectStoreOpenCursor_Params; | 23 struct IndexedDBHostMsg_ObjectStoreOpenCursor_Params; |
25 struct IndexedDBHostMsg_ObjectStorePut_Params; | 24 struct IndexedDBHostMsg_ObjectStorePut_Params; |
26 | 25 |
27 namespace WebKit { | 26 namespace WebKit { |
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
266 scoped_ptr<CursorDispatcherHost> cursor_dispatcher_host_; | 265 scoped_ptr<CursorDispatcherHost> cursor_dispatcher_host_; |
267 scoped_ptr<TransactionDispatcherHost> transaction_dispatcher_host_; | 266 scoped_ptr<TransactionDispatcherHost> transaction_dispatcher_host_; |
268 | 267 |
269 // Used to dispatch messages to the correct view host. | 268 // Used to dispatch messages to the correct view host. |
270 int process_id_; | 269 int process_id_; |
271 | 270 |
272 DISALLOW_IMPLICIT_CONSTRUCTORS(IndexedDBDispatcherHost); | 271 DISALLOW_IMPLICIT_CONSTRUCTORS(IndexedDBDispatcherHost); |
273 }; | 272 }; |
274 | 273 |
275 #endif // CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_DISPATCHER_HOST_H_ | 274 #endif // CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_DISPATCHER_HOST_H_ |
OLD | NEW |