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 <memory> | 8 #include <memory> |
9 | 9 |
10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 #if defined(USE_OZONE) | 63 #if defined(USE_OZONE) |
64 namespace ui { | 64 namespace ui { |
65 class ClientNativePixmapFactory; | 65 class ClientNativePixmapFactory; |
66 } // namespace ui | 66 } // namespace ui |
67 #endif | 67 #endif |
68 | 68 |
69 namespace content { | 69 namespace content { |
70 class BrowserMainParts; | 70 class BrowserMainParts; |
71 class BrowserOnlineStateObserver; | 71 class BrowserOnlineStateObserver; |
72 class BrowserThreadImpl; | 72 class BrowserThreadImpl; |
| 73 class LoaderDelegateImpl; |
73 class MediaStreamManager; | 74 class MediaStreamManager; |
74 class MojoShellContext; | 75 class MojoShellContext; |
75 class ResourceDispatcherHostImpl; | 76 class ResourceDispatcherHostImpl; |
76 class SpeechRecognitionManagerImpl; | 77 class SpeechRecognitionManagerImpl; |
77 class StartupTaskRunner; | 78 class StartupTaskRunner; |
78 class TimeZoneMonitor; | 79 class TimeZoneMonitor; |
79 struct MainFunctionParams; | 80 struct MainFunctionParams; |
80 | 81 |
81 #if defined(OS_ANDROID) | 82 #if defined(OS_ANDROID) |
82 class ScreenOrientationDelegate; | 83 class ScreenOrientationDelegate; |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 std::unique_ptr<media::SystemMessageWindowWin> system_message_window_; | 275 std::unique_ptr<media::SystemMessageWindowWin> system_message_window_; |
275 #elif defined(OS_LINUX) && defined(USE_UDEV) | 276 #elif defined(OS_LINUX) && defined(USE_UDEV) |
276 std::unique_ptr<media::DeviceMonitorLinux> device_monitor_linux_; | 277 std::unique_ptr<media::DeviceMonitorLinux> device_monitor_linux_; |
277 #elif defined(OS_MACOSX) && !defined(OS_IOS) | 278 #elif defined(OS_MACOSX) && !defined(OS_IOS) |
278 std::unique_ptr<media::DeviceMonitorMac> device_monitor_mac_; | 279 std::unique_ptr<media::DeviceMonitorMac> device_monitor_mac_; |
279 #endif | 280 #endif |
280 #if defined(USE_OZONE) | 281 #if defined(USE_OZONE) |
281 std::unique_ptr<ui::ClientNativePixmapFactory> client_native_pixmap_factory_; | 282 std::unique_ptr<ui::ClientNativePixmapFactory> client_native_pixmap_factory_; |
282 #endif | 283 #endif |
283 | 284 |
| 285 std::unique_ptr<LoaderDelegateImpl> loader_delegate_; |
284 std::unique_ptr<ResourceDispatcherHostImpl> resource_dispatcher_host_; | 286 std::unique_ptr<ResourceDispatcherHostImpl> resource_dispatcher_host_; |
285 std::unique_ptr<MediaStreamManager> media_stream_manager_; | 287 std::unique_ptr<MediaStreamManager> media_stream_manager_; |
286 std::unique_ptr<SpeechRecognitionManagerImpl> speech_recognition_manager_; | 288 std::unique_ptr<SpeechRecognitionManagerImpl> speech_recognition_manager_; |
287 std::unique_ptr<TimeZoneMonitor> time_zone_monitor_; | 289 std::unique_ptr<TimeZoneMonitor> time_zone_monitor_; |
288 | 290 |
289 // DO NOT add members here. Add them to the right categories above. | 291 // DO NOT add members here. Add them to the right categories above. |
290 | 292 |
291 DISALLOW_COPY_AND_ASSIGN(BrowserMainLoop); | 293 DISALLOW_COPY_AND_ASSIGN(BrowserMainLoop); |
292 }; | 294 }; |
293 | 295 |
294 } // namespace content | 296 } // namespace content |
295 | 297 |
296 #endif // CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_ | 298 #endif // CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_ |
OLD | NEW |