| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 | 42 |
| 43 namespace content { | 43 namespace content { |
| 44 class ChildMessageFilter; | 44 class ChildMessageFilter; |
| 45 class ChildDiscardableSharedMemoryManager; | 45 class ChildDiscardableSharedMemoryManager; |
| 46 class ChildGpuMemoryBufferManager; | 46 class ChildGpuMemoryBufferManager; |
| 47 class ChildHistogramMessageFilter; | 47 class ChildHistogramMessageFilter; |
| 48 class ChildResourceMessageFilter; | 48 class ChildResourceMessageFilter; |
| 49 class ChildSharedBitmapManager; | 49 class ChildSharedBitmapManager; |
| 50 class FileSystemDispatcher; | 50 class FileSystemDispatcher; |
| 51 class InProcessChildThreadParams; | 51 class InProcessChildThreadParams; |
| 52 class NavigatorConnectDispatcher; | |
| 53 class NotificationDispatcher; | 52 class NotificationDispatcher; |
| 54 class PushDispatcher; | 53 class PushDispatcher; |
| 55 class ServiceWorkerMessageFilter; | 54 class ServiceWorkerMessageFilter; |
| 56 class QuotaDispatcher; | 55 class QuotaDispatcher; |
| 57 class QuotaMessageFilter; | 56 class QuotaMessageFilter; |
| 58 class ResourceDispatcher; | 57 class ResourceDispatcher; |
| 59 class ThreadSafeSender; | 58 class ThreadSafeSender; |
| 60 class WebSocketDispatcher; | 59 class WebSocketDispatcher; |
| 61 struct RequestInfo; | 60 struct RequestInfo; |
| 62 | 61 |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 | 287 |
| 289 // Observes the trace event system. When tracing is enabled, optionally | 288 // Observes the trace event system. When tracing is enabled, optionally |
| 290 // starts profiling the tcmalloc heap. | 289 // starts profiling the tcmalloc heap. |
| 291 scoped_ptr<base::trace_event::TraceMemoryController> trace_memory_controller_; | 290 scoped_ptr<base::trace_event::TraceMemoryController> trace_memory_controller_; |
| 292 | 291 |
| 293 scoped_ptr<base::PowerMonitor> power_monitor_; | 292 scoped_ptr<base::PowerMonitor> power_monitor_; |
| 294 | 293 |
| 295 scoped_refptr<ChildMessageFilter> geofencing_message_filter_; | 294 scoped_refptr<ChildMessageFilter> geofencing_message_filter_; |
| 296 scoped_refptr<ChildMessageFilter> bluetooth_message_filter_; | 295 scoped_refptr<ChildMessageFilter> bluetooth_message_filter_; |
| 297 | 296 |
| 298 scoped_refptr<NavigatorConnectDispatcher> navigator_connect_dispatcher_; | |
| 299 | |
| 300 scoped_refptr<base::SequencedTaskRunner> browser_process_io_runner_; | 297 scoped_refptr<base::SequencedTaskRunner> browser_process_io_runner_; |
| 301 | 298 |
| 302 base::WeakPtrFactory<ChildThreadImpl> channel_connected_factory_; | 299 base::WeakPtrFactory<ChildThreadImpl> channel_connected_factory_; |
| 303 | 300 |
| 304 DISALLOW_COPY_AND_ASSIGN(ChildThreadImpl); | 301 DISALLOW_COPY_AND_ASSIGN(ChildThreadImpl); |
| 305 }; | 302 }; |
| 306 | 303 |
| 307 struct ChildThreadImpl::Options { | 304 struct ChildThreadImpl::Options { |
| 308 ~Options(); | 305 ~Options(); |
| 309 | 306 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 331 | 328 |
| 332 private: | 329 private: |
| 333 struct Options options_; | 330 struct Options options_; |
| 334 | 331 |
| 335 DISALLOW_COPY_AND_ASSIGN(Builder); | 332 DISALLOW_COPY_AND_ASSIGN(Builder); |
| 336 }; | 333 }; |
| 337 | 334 |
| 338 } // namespace content | 335 } // namespace content |
| 339 | 336 |
| 340 #endif // CONTENT_CHILD_CHILD_THREAD_IMPL_H_ | 337 #endif // CONTENT_CHILD_CHILD_THREAD_IMPL_H_ |
| OLD | NEW |