| 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; | |
| 13 class CommandLine; | 12 class CommandLine; |
| 14 class HighResolutionTimerManager; | 13 class HighResolutionTimerManager; |
| 15 class MessageLoop; | 14 class MessageLoop; |
| 16 class SystemMessageWindowWin; | 15 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 content { | 33 namespace content { |
| 35 | |
| 36 class BrowserMainParts; | 34 class BrowserMainParts; |
| 35 class BrowserOnlineStateObserver; |
| 37 class BrowserShutdownImpl; | 36 class BrowserShutdownImpl; |
| 38 class BrowserThreadImpl; | 37 class BrowserThreadImpl; |
| 39 class ResourceDispatcherHostImpl; | 38 class ResourceDispatcherHostImpl; |
| 40 class SpeechRecognitionManagerImpl; | 39 class SpeechRecognitionManagerImpl; |
| 41 class WebKitThread; | 40 class WebKitThread; |
| 42 struct MainFunctionParams; | 41 struct MainFunctionParams; |
| 43 | 42 |
| 44 #if defined(OS_LINUX) | 43 #if defined(OS_LINUX) |
| 45 class DeviceMonitorLinux; | 44 class DeviceMonitorLinux; |
| 46 #elif defined(OS_MACOSX) | 45 #elif defined(OS_MACOSX) |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 scoped_ptr<BrowserProcessSubThread> process_launcher_thread_; | 131 scoped_ptr<BrowserProcessSubThread> process_launcher_thread_; |
| 133 scoped_ptr<BrowserProcessSubThread> cache_thread_; | 132 scoped_ptr<BrowserProcessSubThread> cache_thread_; |
| 134 scoped_ptr<BrowserProcessSubThread> io_thread_; | 133 scoped_ptr<BrowserProcessSubThread> io_thread_; |
| 135 | 134 |
| 136 DISALLOW_COPY_AND_ASSIGN(BrowserMainLoop); | 135 DISALLOW_COPY_AND_ASSIGN(BrowserMainLoop); |
| 137 }; | 136 }; |
| 138 | 137 |
| 139 } // namespace content | 138 } // namespace content |
| 140 | 139 |
| 141 #endif // CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_ | 140 #endif // CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_ |
| OLD | NEW |