| 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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 scoped_ptr<ChildDiscardableSharedMemoryManager> | 285 scoped_ptr<ChildDiscardableSharedMemoryManager> |
| 286 discardable_shared_memory_manager_; | 286 discardable_shared_memory_manager_; |
| 287 | 287 |
| 288 // Observes the trace event system. When tracing is enabled, optionally | 288 // Observes the trace event system. When tracing is enabled, optionally |
| 289 // starts profiling the tcmalloc heap. | 289 // starts profiling the tcmalloc heap. |
| 290 scoped_ptr<base::trace_event::TraceMemoryController> trace_memory_controller_; | 290 scoped_ptr<base::trace_event::TraceMemoryController> trace_memory_controller_; |
| 291 | 291 |
| 292 scoped_ptr<base::PowerMonitor> power_monitor_; | 292 scoped_ptr<base::PowerMonitor> power_monitor_; |
| 293 | 293 |
| 294 scoped_refptr<ChildMessageFilter> geofencing_message_filter_; | 294 scoped_refptr<ChildMessageFilter> geofencing_message_filter_; |
| 295 scoped_refptr<ChildMessageFilter> bluetooth_message_filter_; | |
| 296 | 295 |
| 297 scoped_refptr<base::SequencedTaskRunner> browser_process_io_runner_; | 296 scoped_refptr<base::SequencedTaskRunner> browser_process_io_runner_; |
| 298 | 297 |
| 299 base::WeakPtrFactory<ChildThreadImpl> channel_connected_factory_; | 298 base::WeakPtrFactory<ChildThreadImpl> channel_connected_factory_; |
| 300 | 299 |
| 301 DISALLOW_COPY_AND_ASSIGN(ChildThreadImpl); | 300 DISALLOW_COPY_AND_ASSIGN(ChildThreadImpl); |
| 302 }; | 301 }; |
| 303 | 302 |
| 304 struct ChildThreadImpl::Options { | 303 struct ChildThreadImpl::Options { |
| 305 ~Options(); | 304 ~Options(); |
| (...skipping 25 matching lines...) Expand all Loading... |
| 331 | 330 |
| 332 private: | 331 private: |
| 333 struct Options options_; | 332 struct Options options_; |
| 334 | 333 |
| 335 DISALLOW_COPY_AND_ASSIGN(Builder); | 334 DISALLOW_COPY_AND_ASSIGN(Builder); |
| 336 }; | 335 }; |
| 337 | 336 |
| 338 } // namespace content | 337 } // namespace content |
| 339 | 338 |
| 340 #endif // CONTENT_CHILD_CHILD_THREAD_IMPL_H_ | 339 #endif // CONTENT_CHILD_CHILD_THREAD_IMPL_H_ |
| OLD | NEW |