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_BROWSER_BROWSER_MAIN_LOOP_H_ | 5 #ifndef CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_ |
6 #define CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_ | 6 #define CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "content/browser/browser_process_sub_thread.h" | 10 #include "content/browser/browser_process_sub_thread.h" |
11 | 11 |
12 class CommandLine; | 12 class CommandLine; |
13 | 13 |
14 namespace base { | 14 namespace base { |
15 class HighResolutionTimerManager; | 15 class HighResolutionTimerManager; |
16 class MessageLoop; | 16 class MessageLoop; |
17 class PowerMonitor; | 17 class PowerMonitor; |
18 class SystemMonitor; | 18 class SystemMonitor; |
19 namespace debug { | 19 namespace debug { |
20 class TraceMemoryController; | 20 class TraceMemoryController; |
| 21 class TraceSystemController; |
21 } // namespace debug | 22 } // namespace debug |
22 } // namespace base | 23 } // namespace base |
23 | 24 |
24 namespace media { | 25 namespace media { |
25 class AudioManager; | 26 class AudioManager; |
26 class MIDIManager; | 27 class MIDIManager; |
27 } // namespace media | 28 } // namespace media |
28 | 29 |
29 namespace net { | 30 namespace net { |
30 class NetworkChangeNotifier; | 31 class NetworkChangeNotifier; |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 // Members initialized in |RunMainMessageLoopParts()| ------------------------ | 140 // Members initialized in |RunMainMessageLoopParts()| ------------------------ |
140 scoped_ptr<BrowserProcessSubThread> db_thread_; | 141 scoped_ptr<BrowserProcessSubThread> db_thread_; |
141 scoped_ptr<BrowserProcessSubThread> file_user_blocking_thread_; | 142 scoped_ptr<BrowserProcessSubThread> file_user_blocking_thread_; |
142 scoped_ptr<BrowserProcessSubThread> file_thread_; | 143 scoped_ptr<BrowserProcessSubThread> file_thread_; |
143 scoped_ptr<BrowserProcessSubThread> process_launcher_thread_; | 144 scoped_ptr<BrowserProcessSubThread> process_launcher_thread_; |
144 scoped_ptr<BrowserProcessSubThread> cache_thread_; | 145 scoped_ptr<BrowserProcessSubThread> cache_thread_; |
145 scoped_ptr<BrowserProcessSubThread> io_thread_; | 146 scoped_ptr<BrowserProcessSubThread> io_thread_; |
146 scoped_ptr<base::Thread> indexed_db_thread_; | 147 scoped_ptr<base::Thread> indexed_db_thread_; |
147 scoped_ptr<MemoryObserver> memory_observer_; | 148 scoped_ptr<MemoryObserver> memory_observer_; |
148 scoped_ptr<base::debug::TraceMemoryController> trace_memory_controller_; | 149 scoped_ptr<base::debug::TraceMemoryController> trace_memory_controller_; |
| 150 scoped_ptr<base::debug::TraceSystemController> trace_system_controller_; |
149 | 151 |
150 DISALLOW_COPY_AND_ASSIGN(BrowserMainLoop); | 152 DISALLOW_COPY_AND_ASSIGN(BrowserMainLoop); |
151 }; | 153 }; |
152 | 154 |
153 } // namespace content | 155 } // namespace content |
154 | 156 |
155 #endif // CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_ | 157 #endif // CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_ |
OLD | NEW |