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_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 Loading... |
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_ |
OLD | NEW |