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

Side by Side Diff: content/worker/worker_thread.h

Issue 16328003: Move a bunch of child-only code from content/common to content/child (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . 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 | « content/worker/worker_main.cc ('k') | content/worker/worker_webkitplatformsupport_impl.h » ('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 (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_WORKER_WORKER_THREAD_H_ 5 #ifndef CONTENT_WORKER_WORKER_THREAD_H_
6 #define CONTENT_WORKER_WORKER_THREAD_H_ 6 #define CONTENT_WORKER_WORKER_THREAD_H_
7 7
8 #include <set> 8 #include <set>
9 9
10 #include "content/common/child_thread.h" 10 #include "content/child/child_thread.h"
11 11
12 struct WorkerProcessMsg_CreateWorker_Params; 12 struct WorkerProcessMsg_CreateWorker_Params;
13 13
14 namespace content { 14 namespace content {
15 class AppCacheDispatcher; 15 class AppCacheDispatcher;
16 class DBMessageFilter; 16 class DBMessageFilter;
17 class IndexedDBMessageFilter; 17 class IndexedDBMessageFilter;
18 class WebDatabaseObserverImpl; 18 class WebDatabaseObserverImpl;
19 class WebSharedWorkerStub; 19 class WebSharedWorkerStub;
20 class WorkerWebKitPlatformSupportImpl; 20 class WorkerWebKitPlatformSupportImpl;
(...skipping 29 matching lines...) Expand all
50 50
51 typedef std::set<WebSharedWorkerStub*> WorkerStubsList; 51 typedef std::set<WebSharedWorkerStub*> WorkerStubsList;
52 WorkerStubsList worker_stubs_; 52 WorkerStubsList worker_stubs_;
53 53
54 DISALLOW_COPY_AND_ASSIGN(WorkerThread); 54 DISALLOW_COPY_AND_ASSIGN(WorkerThread);
55 }; 55 };
56 56
57 } // namespace content 57 } // namespace content
58 58
59 #endif // CONTENT_WORKER_WORKER_THREAD_H_ 59 #endif // CONTENT_WORKER_WORKER_THREAD_H_
OLDNEW
« no previous file with comments | « content/worker/worker_main.cc ('k') | content/worker/worker_webkitplatformsupport_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698