| 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_IMPL_H_ | 5 #ifndef CONTENT_CHILD_CHILD_THREAD_IMPL_H_ |
| 6 #define CONTENT_CHILD_CHILD_THREAD_IMPL_H_ | 6 #define CONTENT_CHILD_CHILD_THREAD_IMPL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 | 46 |
| 47 namespace content { | 47 namespace content { |
| 48 class ChildMessageFilter; | 48 class ChildMessageFilter; |
| 49 class ChildDiscardableSharedMemoryManager; | 49 class ChildDiscardableSharedMemoryManager; |
| 50 class ChildGpuMemoryBufferManager; | 50 class ChildGpuMemoryBufferManager; |
| 51 class ChildHistogramMessageFilter; | 51 class ChildHistogramMessageFilter; |
| 52 class ChildResourceMessageFilter; | 52 class ChildResourceMessageFilter; |
| 53 class ChildSharedBitmapManager; | 53 class ChildSharedBitmapManager; |
| 54 class FileSystemDispatcher; | 54 class FileSystemDispatcher; |
| 55 class InProcessChildThreadParams; | 55 class InProcessChildThreadParams; |
| 56 class NavigatorConnectDispatcher; | |
| 57 class NotificationDispatcher; | 56 class NotificationDispatcher; |
| 58 class PushDispatcher; | 57 class PushDispatcher; |
| 59 class ServiceWorkerMessageFilter; | 58 class ServiceWorkerMessageFilter; |
| 60 class QuotaDispatcher; | 59 class QuotaDispatcher; |
| 61 class QuotaMessageFilter; | 60 class QuotaMessageFilter; |
| 62 class ResourceDispatcher; | 61 class ResourceDispatcher; |
| 63 class ThreadSafeSender; | 62 class ThreadSafeSender; |
| 64 class WebSocketDispatcher; | 63 class WebSocketDispatcher; |
| 65 struct RequestInfo; | 64 struct RequestInfo; |
| 66 | 65 |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 | 294 |
| 296 // Observes the trace event system. When tracing is enabled, optionally | 295 // Observes the trace event system. When tracing is enabled, optionally |
| 297 // starts profiling the tcmalloc heap. | 296 // starts profiling the tcmalloc heap. |
| 298 scoped_ptr<base::trace_event::TraceMemoryController> trace_memory_controller_; | 297 scoped_ptr<base::trace_event::TraceMemoryController> trace_memory_controller_; |
| 299 | 298 |
| 300 scoped_ptr<base::PowerMonitor> power_monitor_; | 299 scoped_ptr<base::PowerMonitor> power_monitor_; |
| 301 | 300 |
| 302 scoped_refptr<ChildMessageFilter> geofencing_message_filter_; | 301 scoped_refptr<ChildMessageFilter> geofencing_message_filter_; |
| 303 scoped_refptr<ChildMessageFilter> bluetooth_message_filter_; | 302 scoped_refptr<ChildMessageFilter> bluetooth_message_filter_; |
| 304 | 303 |
| 305 scoped_refptr<NavigatorConnectDispatcher> navigator_connect_dispatcher_; | |
| 306 | |
| 307 scoped_refptr<base::SequencedTaskRunner> browser_process_io_runner_; | 304 scoped_refptr<base::SequencedTaskRunner> browser_process_io_runner_; |
| 308 | 305 |
| 309 base::WeakPtrFactory<ChildThreadImpl> channel_connected_factory_; | 306 base::WeakPtrFactory<ChildThreadImpl> channel_connected_factory_; |
| 310 | 307 |
| 311 DISALLOW_COPY_AND_ASSIGN(ChildThreadImpl); | 308 DISALLOW_COPY_AND_ASSIGN(ChildThreadImpl); |
| 312 }; | 309 }; |
| 313 | 310 |
| 314 struct ChildThreadImpl::Options { | 311 struct ChildThreadImpl::Options { |
| 315 ~Options(); | 312 ~Options(); |
| 316 | 313 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 338 | 335 |
| 339 private: | 336 private: |
| 340 struct Options options_; | 337 struct Options options_; |
| 341 | 338 |
| 342 DISALLOW_COPY_AND_ASSIGN(Builder); | 339 DISALLOW_COPY_AND_ASSIGN(Builder); |
| 343 }; | 340 }; |
| 344 | 341 |
| 345 } // namespace content | 342 } // namespace content |
| 346 | 343 |
| 347 #endif // CONTENT_CHILD_CHILD_THREAD_IMPL_H_ | 344 #endif // CONTENT_CHILD_CHILD_THREAD_IMPL_H_ |
| OLD | NEW |