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 class HighResolutionTimerManager; | 13 class HighResolutionTimerManager; |
14 | 14 |
15 namespace base { | 15 namespace base { |
16 class MessageLoop; | 16 class MessageLoop; |
17 class PowerMonitor; | 17 class PowerMonitor; |
18 class SystemMonitor; | 18 class SystemMonitor; |
| 19 namespace debug { |
| 20 class TraceMemoryTraceLogObserver; |
| 21 } |
19 } | 22 } |
20 | 23 |
21 namespace media { | 24 namespace media { |
22 class AudioManager; | 25 class AudioManager; |
23 } | 26 } |
24 | 27 |
25 namespace net { | 28 namespace net { |
26 class NetworkChangeNotifier; | 29 class NetworkChangeNotifier; |
27 } | 30 } |
28 | 31 |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 scoped_ptr<BrowserProcessSubThread> db_thread_; | 131 scoped_ptr<BrowserProcessSubThread> db_thread_; |
129 #if !defined(OS_IOS) | 132 #if !defined(OS_IOS) |
130 scoped_ptr<WebKitThread> webkit_thread_; | 133 scoped_ptr<WebKitThread> webkit_thread_; |
131 #endif | 134 #endif |
132 scoped_ptr<BrowserProcessSubThread> file_user_blocking_thread_; | 135 scoped_ptr<BrowserProcessSubThread> file_user_blocking_thread_; |
133 scoped_ptr<BrowserProcessSubThread> file_thread_; | 136 scoped_ptr<BrowserProcessSubThread> file_thread_; |
134 scoped_ptr<BrowserProcessSubThread> process_launcher_thread_; | 137 scoped_ptr<BrowserProcessSubThread> process_launcher_thread_; |
135 scoped_ptr<BrowserProcessSubThread> cache_thread_; | 138 scoped_ptr<BrowserProcessSubThread> cache_thread_; |
136 scoped_ptr<BrowserProcessSubThread> io_thread_; | 139 scoped_ptr<BrowserProcessSubThread> io_thread_; |
137 scoped_ptr<MemoryObserver> memory_observer_; | 140 scoped_ptr<MemoryObserver> memory_observer_; |
| 141 scoped_ptr<base::debug::TraceMemoryTraceLogObserver> trace_memory_observer_; |
138 | 142 |
139 DISALLOW_COPY_AND_ASSIGN(BrowserMainLoop); | 143 DISALLOW_COPY_AND_ASSIGN(BrowserMainLoop); |
140 }; | 144 }; |
141 | 145 |
142 } // namespace content | 146 } // namespace content |
143 | 147 |
144 #endif // CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_ | 148 #endif // CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_ |
OLD | NEW |