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 26 matching lines...) Expand all Loading... |
37 | 37 |
38 namespace content { | 38 namespace content { |
39 class BluetoothMessageFilter; | 39 class BluetoothMessageFilter; |
40 class ChildDiscardableSharedMemoryManager; | 40 class ChildDiscardableSharedMemoryManager; |
41 class ChildGpuMemoryBufferManager; | 41 class ChildGpuMemoryBufferManager; |
42 class ChildHistogramMessageFilter; | 42 class ChildHistogramMessageFilter; |
43 class ChildResourceMessageFilter; | 43 class ChildResourceMessageFilter; |
44 class ChildSharedBitmapManager; | 44 class ChildSharedBitmapManager; |
45 class FileSystemDispatcher; | 45 class FileSystemDispatcher; |
46 class GeofencingMessageFilter; | 46 class GeofencingMessageFilter; |
| 47 class NavigatorConnectDispatcher; |
47 class NotificationDispatcher; | 48 class NotificationDispatcher; |
48 class PushDispatcher; | 49 class PushDispatcher; |
49 class ServiceWorkerMessageFilter; | 50 class ServiceWorkerMessageFilter; |
50 class QuotaDispatcher; | 51 class QuotaDispatcher; |
51 class QuotaMessageFilter; | 52 class QuotaMessageFilter; |
52 class ResourceDispatcher; | 53 class ResourceDispatcher; |
53 class ThreadSafeSender; | 54 class ThreadSafeSender; |
54 class WebSocketDispatcher; | 55 class WebSocketDispatcher; |
55 struct RequestInfo; | 56 struct RequestInfo; |
56 | 57 |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
269 // Observes the trace event system. When tracing is enabled, optionally | 270 // Observes the trace event system. When tracing is enabled, optionally |
270 // starts profiling the tcmalloc heap. | 271 // starts profiling the tcmalloc heap. |
271 scoped_ptr<base::debug::TraceMemoryController> trace_memory_controller_; | 272 scoped_ptr<base::debug::TraceMemoryController> trace_memory_controller_; |
272 | 273 |
273 scoped_ptr<base::PowerMonitor> power_monitor_; | 274 scoped_ptr<base::PowerMonitor> power_monitor_; |
274 | 275 |
275 scoped_refptr<GeofencingMessageFilter> geofencing_message_filter_; | 276 scoped_refptr<GeofencingMessageFilter> geofencing_message_filter_; |
276 | 277 |
277 scoped_refptr<BluetoothMessageFilter> bluetooth_message_filter_; | 278 scoped_refptr<BluetoothMessageFilter> bluetooth_message_filter_; |
278 | 279 |
| 280 scoped_refptr<NavigatorConnectDispatcher> navigator_connect_dispatcher_; |
| 281 |
279 bool in_browser_process_; | 282 bool in_browser_process_; |
280 | 283 |
281 base::WeakPtrFactory<ChildThread> channel_connected_factory_; | 284 base::WeakPtrFactory<ChildThread> channel_connected_factory_; |
282 | 285 |
283 DISALLOW_COPY_AND_ASSIGN(ChildThread); | 286 DISALLOW_COPY_AND_ASSIGN(ChildThread); |
284 }; | 287 }; |
285 | 288 |
286 } // namespace content | 289 } // namespace content |
287 | 290 |
288 #endif // CONTENT_CHILD_CHILD_THREAD_H_ | 291 #endif // CONTENT_CHILD_CHILD_THREAD_H_ |
OLD | NEW |