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_CHILD_CHILD_THREAD_H_ | 5 #ifndef CONTENT_CHILD_CHILD_THREAD_H_ |
6 #define CONTENT_CHILD_CHILD_THREAD_H_ | 6 #define CONTENT_CHILD_CHILD_THREAD_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 13 matching lines...) Expand all Loading... |
24 namespace debug { | 24 namespace debug { |
25 class TraceMemoryController; | 25 class TraceMemoryController; |
26 } // namespace debug | 26 } // namespace debug |
27 } // namespace base | 27 } // namespace base |
28 | 28 |
29 namespace IPC { | 29 namespace IPC { |
30 class SyncChannel; | 30 class SyncChannel; |
31 class SyncMessageFilter; | 31 class SyncMessageFilter; |
32 } // namespace IPC | 32 } // namespace IPC |
33 | 33 |
34 namespace WebKit { | 34 namespace blink { |
35 class WebFrame; | 35 class WebFrame; |
36 } // namespace WebKit | 36 } // namespace blink |
37 | 37 |
38 namespace content { | 38 namespace content { |
39 class ChildHistogramMessageFilter; | 39 class ChildHistogramMessageFilter; |
40 class ChildResourceMessageFilter; | 40 class ChildResourceMessageFilter; |
41 class FileSystemDispatcher; | 41 class FileSystemDispatcher; |
42 class ServiceWorkerDispatcher; | 42 class ServiceWorkerDispatcher; |
43 class ServiceWorkerMessageFilter; | 43 class ServiceWorkerMessageFilter; |
44 class QuotaDispatcher; | 44 class QuotaDispatcher; |
45 class QuotaMessageFilter; | 45 class QuotaMessageFilter; |
46 class ResourceDispatcher; | 46 class ResourceDispatcher; |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 scoped_ptr<base::PowerMonitor> power_monitor_; | 228 scoped_ptr<base::PowerMonitor> power_monitor_; |
229 | 229 |
230 bool in_browser_process_; | 230 bool in_browser_process_; |
231 | 231 |
232 DISALLOW_COPY_AND_ASSIGN(ChildThread); | 232 DISALLOW_COPY_AND_ASSIGN(ChildThread); |
233 }; | 233 }; |
234 | 234 |
235 } // namespace content | 235 } // namespace content |
236 | 236 |
237 #endif // CONTENT_CHILD_CHILD_THREAD_H_ | 237 #endif // CONTENT_CHILD_CHILD_THREAD_H_ |
OLD | NEW |