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 BrowserOnlineStateObserver; | 12 class BrowserOnlineStateObserver; |
13 class CommandLine; | 13 class CommandLine; |
14 class HighResolutionTimerManager; | 14 class HighResolutionTimerManager; |
15 class MessageLoop; | 15 class MessageLoop; |
| 16 class SystemMessageWindowWin; |
16 | 17 |
17 namespace base { | 18 namespace base { |
18 class SystemMonitor; | 19 class SystemMonitor; |
19 } | 20 } |
20 | 21 |
21 namespace media { | 22 namespace media { |
22 class AudioManager; | 23 class AudioManager; |
23 } | 24 } |
24 | 25 |
25 namespace media_stream { | 26 namespace media_stream { |
26 class MediaStreamManager; | 27 class MediaStreamManager; |
27 } | 28 } |
28 | 29 |
29 namespace net { | 30 namespace net { |
30 class NetworkChangeNotifier; | 31 class NetworkChangeNotifier; |
31 } | 32 } |
32 | 33 |
33 namespace speech { | 34 namespace speech { |
34 class SpeechRecognitionManagerImpl; | 35 class SpeechRecognitionManagerImpl; |
35 } | 36 } |
36 | 37 |
37 namespace content { | 38 namespace content { |
38 | 39 |
39 class BrowserMainParts; | 40 class BrowserMainParts; |
40 class BrowserShutdownImpl; | 41 class BrowserShutdownImpl; |
41 class BrowserThreadImpl; | 42 class BrowserThreadImpl; |
42 class ResourceDispatcherHostImpl; | 43 class ResourceDispatcherHostImpl; |
43 class SystemMessageWindowWin; | |
44 class WebKitThread; | 44 class WebKitThread; |
45 struct MainFunctionParams; | 45 struct MainFunctionParams; |
46 | 46 |
47 #if defined(OS_LINUX) | 47 #if defined(OS_LINUX) |
48 class DeviceMonitorLinux; | 48 class DeviceMonitorLinux; |
49 #elif defined(OS_MACOSX) | 49 #elif defined(OS_MACOSX) |
50 class DeviceMonitorMac; | 50 class DeviceMonitorMac; |
51 #endif | 51 #endif |
52 | 52 |
53 // Implements the main browser loop stages called from BrowserMainRunner. | 53 // Implements the main browser loop stages called from BrowserMainRunner. |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 scoped_ptr<BrowserProcessSubThread> process_launcher_thread_; | 135 scoped_ptr<BrowserProcessSubThread> process_launcher_thread_; |
136 scoped_ptr<BrowserProcessSubThread> cache_thread_; | 136 scoped_ptr<BrowserProcessSubThread> cache_thread_; |
137 scoped_ptr<BrowserProcessSubThread> io_thread_; | 137 scoped_ptr<BrowserProcessSubThread> io_thread_; |
138 | 138 |
139 DISALLOW_COPY_AND_ASSIGN(BrowserMainLoop); | 139 DISALLOW_COPY_AND_ASSIGN(BrowserMainLoop); |
140 }; | 140 }; |
141 | 141 |
142 } // namespace content | 142 } // namespace content |
143 | 143 |
144 #endif // CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_ | 144 #endif // CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_ |
OLD | NEW |