Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(164)

Side by Side Diff: content/child/indexed_db/indexed_db_dispatcher.h

Issue 16834004: move webkit/glue/worker_task_* to webkit/child/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | content/child/indexed_db/indexed_db_message_filter.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_CHILD_INDEXED_DB_INDEXED_DB_DISPATCHER_H_ 5 #ifndef CONTENT_CHILD_INDEXED_DB_INDEXED_DB_DISPATCHER_H_
6 #define CONTENT_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/strings/nullable_string16.h" 13 #include "base/strings/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"
17 #include "third_party/WebKit/public/platform/WebIDBCursor.h" 17 #include "third_party/WebKit/public/platform/WebIDBCursor.h"
18 #include "third_party/WebKit/public/platform/WebIDBDatabase.h" 18 #include "third_party/WebKit/public/platform/WebIDBDatabase.h"
19 #include "third_party/WebKit/public/platform/WebIDBDatabaseCallbacks.h" 19 #include "third_party/WebKit/public/platform/WebIDBDatabaseCallbacks.h"
20 #include "webkit/glue/worker_task_runner.h" 20 #include "webkit/child/worker_task_runner.h"
21 21
22 struct IndexedDBDatabaseMetadata; 22 struct IndexedDBDatabaseMetadata;
23 struct IndexedDBMsg_CallbacksSuccessCursorContinue_Params; 23 struct IndexedDBMsg_CallbacksSuccessCursorContinue_Params;
24 struct IndexedDBMsg_CallbacksSuccessCursorPrefetch_Params; 24 struct IndexedDBMsg_CallbacksSuccessCursorPrefetch_Params;
25 struct IndexedDBMsg_CallbacksSuccessIDBCursor_Params; 25 struct IndexedDBMsg_CallbacksSuccessIDBCursor_Params;
26 struct IndexedDBMsg_CallbacksUpgradeNeeded_Params; 26 struct IndexedDBMsg_CallbacksUpgradeNeeded_Params;
27 27
28 namespace WebKit { 28 namespace WebKit {
29 class WebData; 29 class WebData;
30 } 30 }
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_CHILD_INDEXED_DB_INDEXED_DB_DISPATCHER_H_ 241 #endif // CONTENT_CHILD_INDEXED_DB_INDEXED_DB_DISPATCHER_H_
OLDNEW
« no previous file with comments | « no previous file | content/child/indexed_db/indexed_db_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698