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; | |
17 | 16 |
18 namespace base { | 17 namespace base { |
19 class SystemMonitor; | 18 class SystemMonitor; |
20 } | 19 } |
21 | 20 |
22 namespace media { | 21 namespace media { |
23 class AudioManager; | 22 class AudioManager; |
24 } | 23 } |
25 | 24 |
26 namespace media_stream { | 25 namespace media_stream { |
27 class MediaStreamManager; | 26 class MediaStreamManager; |
28 } | 27 } |
29 | 28 |
30 namespace net { | 29 namespace net { |
31 class NetworkChangeNotifier; | 30 class NetworkChangeNotifier; |
32 } | 31 } |
33 | 32 |
34 namespace speech { | 33 namespace speech { |
35 class SpeechRecognitionManagerImpl; | 34 class SpeechRecognitionManagerImpl; |
36 } | 35 } |
37 | 36 |
38 namespace content { | 37 namespace content { |
39 | 38 |
40 class BrowserMainParts; | 39 class BrowserMainParts; |
41 class BrowserShutdownImpl; | 40 class BrowserShutdownImpl; |
42 class BrowserThreadImpl; | 41 class BrowserThreadImpl; |
43 class ResourceDispatcherHostImpl; | 42 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 |