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_INDEXED_DB_INDEXED_DB_DISPATCHER_HOST_H_ |
6 #define CONTENT_BROWSER_IN_PROCESS_WEBKIT_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 <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/id_map.h" | 12 #include "base/id_map.h" |
13 #include "content/public/browser/browser_message_filter.h" | 13 #include "content/public/browser/browser_message_filter.h" |
14 | 14 |
15 class GURL; | 15 class GURL; |
16 struct IndexedDBDatabaseMetadata; | 16 struct IndexedDBDatabaseMetadata; |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 scoped_ptr<CursorDispatcherHost> cursor_dispatcher_host_; | 199 scoped_ptr<CursorDispatcherHost> cursor_dispatcher_host_; |
200 | 200 |
201 // Used to dispatch messages to the correct view host. | 201 // Used to dispatch messages to the correct view host. |
202 int ipc_process_id_; | 202 int ipc_process_id_; |
203 | 203 |
204 DISALLOW_IMPLICIT_CONSTRUCTORS(IndexedDBDispatcherHost); | 204 DISALLOW_IMPLICIT_CONSTRUCTORS(IndexedDBDispatcherHost); |
205 }; | 205 }; |
206 | 206 |
207 } // namespace content | 207 } // namespace content |
208 | 208 |
209 #endif // CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_DISPATCHER_HOST_H_ | 209 #endif // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_DISPATCHER_HOST_H_ |
OLD | NEW |