| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> |
| 10 |
| 9 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 10 #include "base/id_map.h" | 12 #include "base/id_map.h" |
| 11 #include "content/public/browser/browser_message_filter.h" | 13 #include "content/public/browser/browser_message_filter.h" |
| 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebExceptionCode.h" | 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebExceptionCode.h" |
| 13 | 15 |
| 14 class GURL; | 16 class GURL; |
| 15 class IndexedDBContextImpl; | 17 class IndexedDBContextImpl; |
| 16 class IndexedDBKey; | 18 class IndexedDBKey; |
| 17 class IndexedDBKeyRange; | 19 class IndexedDBKeyRange; |
| 18 class NullableString16; | 20 class NullableString16; |
| (...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 scoped_ptr<CursorDispatcherHost> cursor_dispatcher_host_; | 318 scoped_ptr<CursorDispatcherHost> cursor_dispatcher_host_; |
| 317 scoped_ptr<TransactionDispatcherHost> transaction_dispatcher_host_; | 319 scoped_ptr<TransactionDispatcherHost> transaction_dispatcher_host_; |
| 318 | 320 |
| 319 // Used to dispatch messages to the correct view host. | 321 // Used to dispatch messages to the correct view host. |
| 320 int process_id_; | 322 int process_id_; |
| 321 | 323 |
| 322 DISALLOW_IMPLICIT_CONSTRUCTORS(IndexedDBDispatcherHost); | 324 DISALLOW_IMPLICIT_CONSTRUCTORS(IndexedDBDispatcherHost); |
| 323 }; | 325 }; |
| 324 | 326 |
| 325 #endif // CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_DISPATCHER_HOST_H_ | 327 #endif // CONTENT_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_DISPATCHER_HOST_H_ |
| OLD | NEW |