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 { |
| 20 class TraceMemoryController; |
| 21 } |
19 } | 22 } |
20 | 23 |
21 namespace media { | 24 namespace media { |
22 class AudioManager; | 25 class AudioManager; |
23 class MIDIManager; | 26 class MIDIManager; |
24 } | 27 } |
25 | 28 |
26 namespace net { | 29 namespace net { |
27 class NetworkChangeNotifier; | 30 class NetworkChangeNotifier; |
28 } | 31 } |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 #if !defined(OS_IOS) | 142 #if !defined(OS_IOS) |
140 scoped_ptr<WebKitThread> webkit_thread_; | 143 scoped_ptr<WebKitThread> webkit_thread_; |
141 #endif | 144 #endif |
142 scoped_ptr<BrowserProcessSubThread> file_user_blocking_thread_; | 145 scoped_ptr<BrowserProcessSubThread> file_user_blocking_thread_; |
143 scoped_ptr<BrowserProcessSubThread> file_thread_; | 146 scoped_ptr<BrowserProcessSubThread> file_thread_; |
144 scoped_ptr<BrowserProcessSubThread> process_launcher_thread_; | 147 scoped_ptr<BrowserProcessSubThread> process_launcher_thread_; |
145 scoped_ptr<BrowserProcessSubThread> cache_thread_; | 148 scoped_ptr<BrowserProcessSubThread> cache_thread_; |
146 scoped_ptr<BrowserProcessSubThread> io_thread_; | 149 scoped_ptr<BrowserProcessSubThread> io_thread_; |
147 scoped_ptr<base::Thread> indexed_db_thread_; | 150 scoped_ptr<base::Thread> indexed_db_thread_; |
148 scoped_ptr<MemoryObserver> memory_observer_; | 151 scoped_ptr<MemoryObserver> memory_observer_; |
| 152 scoped_ptr<base::debug::TraceMemoryController> trace_memory_controller_; |
149 | 153 |
150 DISALLOW_COPY_AND_ASSIGN(BrowserMainLoop); | 154 DISALLOW_COPY_AND_ASSIGN(BrowserMainLoop); |
151 }; | 155 }; |
152 | 156 |
153 } // namespace content | 157 } // namespace content |
154 | 158 |
155 #endif // CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_ | 159 #endif // CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_ |
OLD | NEW |