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/files/file_path.h" | 9 #include "base/files/file_path.h" |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "base/timer/timer.h" | 12 #include "base/timer/timer.h" |
13 #include "content/browser/browser_process_sub_thread.h" | 13 #include "content/browser/browser_process_sub_thread.h" |
14 #include "content/public/browser/browser_main_runner.h" | 14 #include "content/public/browser/browser_main_runner.h" |
15 | 15 |
16 namespace base { | 16 namespace base { |
17 class CommandLine; | 17 class CommandLine; |
18 class FilePath; | 18 class FilePath; |
19 class HighResolutionTimerManager; | 19 class HighResolutionTimerManager; |
20 class MessageLoop; | 20 class MessageLoop; |
21 class PowerMonitor; | 21 class PowerMonitor; |
22 class SystemMonitor; | 22 class SystemMonitor; |
23 #if defined(OS_CHROMEOS) | 23 #if defined(OS_CHROMEOS) |
24 class MemoryPressureObserverChromeOS; | 24 class MemoryPressureObserverChromeOS; |
25 #endif | 25 #endif |
26 namespace debug { | 26 namespace trace_event { |
27 class TraceMemoryController; | 27 class TraceMemoryController; |
28 class TraceEventSystemStatsMonitor; | 28 class TraceEventSystemStatsMonitor; |
29 } // namespace trace_event | |
30 namespace debug { | |
Primiano Tucci (use gerrit)
2015/01/27 14:34:11
Why did you add the trailing comment here and not
| |
31 using ::base::trace_event::TraceMemoryController; | |
Primiano Tucci (use gerrit)
2015/01/27 14:34:11
Nit: blankline
| |
32 using ::base::trace_event::TraceEventSystemStatsMonitor; | |
29 } // namespace debug | 33 } // namespace debug |
30 } // namespace base | 34 } // namespace base |
31 | 35 |
32 namespace media { | 36 namespace media { |
33 class AudioManager; | 37 class AudioManager; |
34 class MidiManager; | 38 class MidiManager; |
35 class UserInputMonitor; | 39 class UserInputMonitor; |
36 } // namespace media | 40 } // namespace media |
37 | 41 |
38 namespace net { | 42 namespace net { |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
217 | 221 |
218 // This timer initiates trace file saving. | 222 // This timer initiates trace file saving. |
219 base::OneShotTimer<BrowserMainLoop> startup_trace_timer_; | 223 base::OneShotTimer<BrowserMainLoop> startup_trace_timer_; |
220 | 224 |
221 DISALLOW_COPY_AND_ASSIGN(BrowserMainLoop); | 225 DISALLOW_COPY_AND_ASSIGN(BrowserMainLoop); |
222 }; | 226 }; |
223 | 227 |
224 } // namespace content | 228 } // namespace content |
225 | 229 |
226 #endif // CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_ | 230 #endif // CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_ |
OLD | NEW |