| 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" |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 class UserInputMonitor; | 32 class UserInputMonitor; |
| 33 namespace midi { | 33 namespace midi { |
| 34 class MidiManager; | 34 class MidiManager; |
| 35 } // namespace midi | 35 } // namespace midi |
| 36 } // namespace media | 36 } // namespace media |
| 37 | 37 |
| 38 namespace net { | 38 namespace net { |
| 39 class NetworkChangeNotifier; | 39 class NetworkChangeNotifier; |
| 40 } // namespace net | 40 } // namespace net |
| 41 | 41 |
| 42 #if defined(USE_OZONE) | |
| 43 namespace ui { | |
| 44 class ClientNativePixmapManager; | |
| 45 } // namespace ui | |
| 46 #endif | |
| 47 | |
| 48 namespace content { | 42 namespace content { |
| 49 class BrowserMainParts; | 43 class BrowserMainParts; |
| 50 class BrowserOnlineStateObserver; | 44 class BrowserOnlineStateObserver; |
| 51 class BrowserShutdownImpl; | 45 class BrowserShutdownImpl; |
| 52 class BrowserThreadImpl; | 46 class BrowserThreadImpl; |
| 53 class MediaStreamManager; | 47 class MediaStreamManager; |
| 54 class MojoShellContext; | 48 class MojoShellContext; |
| 55 class ResourceDispatcherHostImpl; | 49 class ResourceDispatcherHostImpl; |
| 56 class SpeechRecognitionManagerImpl; | 50 class SpeechRecognitionManagerImpl; |
| 57 class StartupTaskRunner; | 51 class StartupTaskRunner; |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 scoped_ptr<media::UserInputMonitor> user_input_monitor_; | 238 scoped_ptr<media::UserInputMonitor> user_input_monitor_; |
| 245 scoped_ptr<media::AudioManager> audio_manager_; | 239 scoped_ptr<media::AudioManager> audio_manager_; |
| 246 | 240 |
| 247 scoped_ptr<media::midi::MidiManager> midi_manager_; | 241 scoped_ptr<media::midi::MidiManager> midi_manager_; |
| 248 | 242 |
| 249 #if defined(USE_UDEV) | 243 #if defined(USE_UDEV) |
| 250 scoped_ptr<DeviceMonitorLinux> device_monitor_linux_; | 244 scoped_ptr<DeviceMonitorLinux> device_monitor_linux_; |
| 251 #elif defined(OS_MACOSX) && !defined(OS_IOS) | 245 #elif defined(OS_MACOSX) && !defined(OS_IOS) |
| 252 scoped_ptr<DeviceMonitorMac> device_monitor_mac_; | 246 scoped_ptr<DeviceMonitorMac> device_monitor_mac_; |
| 253 #endif | 247 #endif |
| 254 #if defined(USE_OZONE) | |
| 255 scoped_ptr<ui::ClientNativePixmapManager> client_native_pixmap_manager_; | |
| 256 #endif | |
| 257 | 248 |
| 258 scoped_ptr<ResourceDispatcherHostImpl> resource_dispatcher_host_; | 249 scoped_ptr<ResourceDispatcherHostImpl> resource_dispatcher_host_; |
| 259 scoped_ptr<MediaStreamManager> media_stream_manager_; | 250 scoped_ptr<MediaStreamManager> media_stream_manager_; |
| 260 scoped_ptr<SpeechRecognitionManagerImpl> speech_recognition_manager_; | 251 scoped_ptr<SpeechRecognitionManagerImpl> speech_recognition_manager_; |
| 261 scoped_ptr<TimeZoneMonitor> time_zone_monitor_; | 252 scoped_ptr<TimeZoneMonitor> time_zone_monitor_; |
| 262 | 253 |
| 263 // DO NOT add members here. Add them to the right categories above. | 254 // DO NOT add members here. Add them to the right categories above. |
| 264 | 255 |
| 265 DISALLOW_COPY_AND_ASSIGN(BrowserMainLoop); | 256 DISALLOW_COPY_AND_ASSIGN(BrowserMainLoop); |
| 266 }; | 257 }; |
| 267 | 258 |
| 268 } // namespace content | 259 } // namespace content |
| 269 | 260 |
| 270 #endif // CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_ | 261 #endif // CONTENT_BROWSER_BROWSER_MAIN_LOOP_H_ |
| OLD | NEW |