| 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 22 matching lines...) Expand all Loading... |
| 33 | 33 |
| 34 namespace blink { | 34 namespace blink { |
| 35 class WebFrame; | 35 class WebFrame; |
| 36 } // namespace blink | 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 ChildSharedBitmapManager; | 41 class ChildSharedBitmapManager; |
| 42 class FileSystemDispatcher; | 42 class FileSystemDispatcher; |
| 43 class GeofencingMessageFilter; |
| 43 class ServiceWorkerMessageFilter; | 44 class ServiceWorkerMessageFilter; |
| 44 class QuotaDispatcher; | 45 class QuotaDispatcher; |
| 45 class QuotaMessageFilter; | 46 class QuotaMessageFilter; |
| 46 class ResourceDispatcher; | 47 class ResourceDispatcher; |
| 47 class SocketStreamDispatcher; | 48 class SocketStreamDispatcher; |
| 48 class ThreadSafeSender; | 49 class ThreadSafeSender; |
| 49 class WebSocketDispatcher; | 50 class WebSocketDispatcher; |
| 50 struct RequestInfo; | 51 struct RequestInfo; |
| 51 | 52 |
| 52 // The main thread of a child process derives from this class. | 53 // The main thread of a child process derives from this class. |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 scoped_ptr<ChildSharedBitmapManager> shared_bitmap_manager_; | 243 scoped_ptr<ChildSharedBitmapManager> shared_bitmap_manager_; |
| 243 | 244 |
| 244 base::WeakPtrFactory<ChildThread> channel_connected_factory_; | 245 base::WeakPtrFactory<ChildThread> channel_connected_factory_; |
| 245 | 246 |
| 246 // Observes the trace event system. When tracing is enabled, optionally | 247 // Observes the trace event system. When tracing is enabled, optionally |
| 247 // starts profiling the tcmalloc heap. | 248 // starts profiling the tcmalloc heap. |
| 248 scoped_ptr<base::debug::TraceMemoryController> trace_memory_controller_; | 249 scoped_ptr<base::debug::TraceMemoryController> trace_memory_controller_; |
| 249 | 250 |
| 250 scoped_ptr<base::PowerMonitor> power_monitor_; | 251 scoped_ptr<base::PowerMonitor> power_monitor_; |
| 251 | 252 |
| 253 scoped_refptr<GeofencingMessageFilter> geofencing_message_filter_; |
| 254 |
| 252 bool in_browser_process_; | 255 bool in_browser_process_; |
| 253 | 256 |
| 254 DISALLOW_COPY_AND_ASSIGN(ChildThread); | 257 DISALLOW_COPY_AND_ASSIGN(ChildThread); |
| 255 }; | 258 }; |
| 256 | 259 |
| 257 } // namespace content | 260 } // namespace content |
| 258 | 261 |
| 259 #endif // CONTENT_CHILD_CHILD_THREAD_H_ | 262 #endif // CONTENT_CHILD_CHILD_THREAD_H_ |
| OLD | NEW |