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_COMMON_CHILD_INDEXED_DB_INDEXED_DB_DISPATCHER_H_ | 5 #ifndef CONTENT_CHILD_INDEXED_DB_INDEXED_DB_DISPATCHER_H_ |
6 #define CONTENT_COMMON_CHILD_INDEXED_DB_INDEXED_DB_DISPATCHER_H_ | 6 #define CONTENT_CHILD_INDEXED_DB_INDEXED_DB_DISPATCHER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/gtest_prod_util.h" | 11 #include "base/gtest_prod_util.h" |
12 #include "base/id_map.h" | 12 #include "base/id_map.h" |
13 #include "base/nullable_string16.h" | 13 #include "base/nullable_string16.h" |
14 #include "content/common/content_export.h" | 14 #include "content/common/content_export.h" |
15 #include "ipc/ipc_sync_message_filter.h" | 15 #include "ipc/ipc_sync_message_filter.h" |
16 #include "third_party/WebKit/public/platform/WebIDBCallbacks.h" | 16 #include "third_party/WebKit/public/platform/WebIDBCallbacks.h" |
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
231 // Map from cursor id to RendererWebIDBCursorImpl. | 231 // Map from cursor id to RendererWebIDBCursorImpl. |
232 std::map<int32, RendererWebIDBCursorImpl*> cursors_; | 232 std::map<int32, RendererWebIDBCursorImpl*> cursors_; |
233 | 233 |
234 std::map<int32, RendererWebIDBDatabaseImpl*> databases_; | 234 std::map<int32, RendererWebIDBDatabaseImpl*> databases_; |
235 | 235 |
236 DISALLOW_COPY_AND_ASSIGN(IndexedDBDispatcher); | 236 DISALLOW_COPY_AND_ASSIGN(IndexedDBDispatcher); |
237 }; | 237 }; |
238 | 238 |
239 } // namespace content | 239 } // namespace content |
240 | 240 |
241 #endif // CONTENT_COMMON_CHILD_INDEXED_DB_INDEXED_DB_DISPATCHER_H_ | 241 #endif // CONTENT_CHILD_INDEXED_DB_INDEXED_DB_DISPATCHER_H_ |
OLD | NEW |