HomeSort by relevance Sort by last modified time
    Searched refs:SystemMonitor (Results 1 - 22 of 22) sorted by null

  /external/chromium_org/base/system_monitor/
system_monitor.cc 15 static SystemMonitor* g_system_monitor = NULL;
17 SystemMonitor::SystemMonitor()
24 SystemMonitor::~SystemMonitor() {
30 SystemMonitor* SystemMonitor::Get() {
34 void SystemMonitor::ProcessDevicesChanged(DeviceType device_type) {
38 void SystemMonitor::AddDevicesChangedObserver(DevicesChangedObserver* obs) {
42 void SystemMonitor::RemoveDevicesChangedObserver(DevicesChangedObserver* obs)
    [all...]
system_monitor.h 19 class BASE_EXPORT SystemMonitor {
28 // Create SystemMonitor. Only one SystemMonitor instance per application
30 SystemMonitor();
31 ~SystemMonitor();
33 // Get the application-wide SystemMonitor (if not present, returns NULL).
34 static SystemMonitor* Get();
70 DISALLOW_COPY_AND_ASSIGN(SystemMonitor);
system_monitor_unittest.cc 20 system_monitor_.reset(new SystemMonitor);
25 scoped_ptr<SystemMonitor> system_monitor_;
39 OnDevicesChanged(SystemMonitor::DEVTYPE_UNKNOWN))
44 system_monitor_->ProcessDevicesChanged(SystemMonitor::DEVTYPE_UNKNOWN);
47 system_monitor_->ProcessDevicesChanged(SystemMonitor::DEVTYPE_UNKNOWN);
48 system_monitor_->ProcessDevicesChanged(SystemMonitor::DEVTYPE_UNKNOWN);
  /external/chromium_org/base/test/
mock_devices_changed_observer.h 16 : public base::SystemMonitor::DevicesChangedObserver {
22 void(base::SystemMonitor::DeviceType device_type));
  /external/chromium_org/content/browser/
device_monitor_mac.h 20 void NotifyDeviceChanged(base::SystemMonitor::DeviceType type);
device_monitor_linux.cc 20 base::SystemMonitor::DeviceType device_type;
30 { base::SystemMonitor::DEVTYPE_AUDIO_CAPTURE, kAudioSubsystem, NULL },
31 { base::SystemMonitor::DEVTYPE_VIDEO_CAPTURE, kVideoSubsystem, NULL },
73 base::SystemMonitor::DeviceType device_type =
74 base::SystemMonitor::DEVTYPE_UNKNOWN;
82 DCHECK_NE(device_type, base::SystemMonitor::DEVTYPE_UNKNOWN);
84 base::SystemMonitor::Get()->ProcessDevicesChanged(device_type);
system_message_window_win.cc 19 // A static map from a device category guid to base::SystemMonitor::DeviceType.
22 const base::SystemMonitor::DeviceType device_type;
24 { KSCATEGORY_AUDIO, base::SystemMonitor::DEVTYPE_AUDIO_CAPTURE },
25 { KSCATEGORY_VIDEO, base::SystemMonitor::DEVTYPE_VIDEO_CAPTURE },
106 base::SystemMonitor* monitor = base::SystemMonitor::Get();
107 base::SystemMonitor::DeviceType device_type =
108 base::SystemMonitor::DEVTYPE_UNKNOWN;
136 if (device_type == base::SystemMonitor::DEVTYPE_UNKNOWN)
system_message_window_win_unittest.cc 29 base::SystemMonitor system_monitor_;
browser_main_loop.h 20 class SystemMonitor;
121 scoped_ptr<base::SystemMonitor> system_monitor_;
browser_main_loop.cc 404 TRACE_EVENT0("startup", "BrowserMainLoop::Subsystem:SystemMonitor")
405 system_monitor_.reset(new base::SystemMonitor);
    [all...]
  /external/chromium/chrome/browser/
browser_main.h 26 class SystemMonitor;
152 scoped_ptr<ui::SystemMonitor> system_monitor_;
browser_main.cc 519 system_monitor_.reset(new ui::SystemMonitor);
    [all...]
  /external/chromium_org/content/browser/gamepad/
gamepad_provider.h 32 public base::SystemMonitor::DevicesChangedObserver {
55 // base::SystemMonitor::DevicesChangedObserver implementation.
56 virtual void OnDevicesChanged(base::SystemMonitor::DeviceType type) OVERRIDE;
107 // Updated based on notification from SystemMonitor when the system devices
gamepad_provider.cc 49 base::SystemMonitor* monitor = base::SystemMonitor::Get();
100 void GamepadProvider::OnDevicesChanged(base::SystemMonitor::DeviceType type) {
107 base::SystemMonitor* monitor = base::SystemMonitor::Get();
  /external/chromium_org/media/audio/win/
audio_device_listener_win.cc 121 base::SystemMonitor* monitor = base::SystemMonitor::Get();
123 monitor->ProcessDevicesChanged(base::SystemMonitor::DEVTYPE_AUDIO_CAPTURE);
  /external/chromium/chrome/browser/profiles/
profile_manager.h 28 public ui::SystemMonitor::PowerObserver,
profile_manager.cc 85 ui::SystemMonitor::Get()->AddObserver(this);
95 ui::SystemMonitor* system_monitor = ui::SystemMonitor::Get();
profile_manager_unittest.cc 71 ui::SystemMonitor system_monitor_dummy_;
  /external/chromium_org/content/browser/renderer_host/media/
media_stream_manager.h 62 public base::SystemMonitor::DevicesChangedObserver {
145 // Implements base::SystemMonitor::DevicesChangedObserver.
147 base::SystemMonitor::DeviceType device_type) OVERRIDE;
media_stream_manager.cc 480 if (!base::SystemMonitor::Get())
485 base::SystemMonitor::Get()->AddDevicesChangedObserver(this);
499 base::SystemMonitor::Get()->RemoveDevicesChangedObserver(this);
544 if (!monitoring_started_ && base::SystemMonitor::Get()) {
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_event_router_forwarder_unittest.cc 69 ui::SystemMonitor dummy;
  /external/chromium/chrome/browser/tabs/
tab_strip_model_unittest.cc 259 // ProfileManager requires a ui::SystemMonitor.
260 ui::SystemMonitor system_monitor;
    [all...]

Completed in 809 milliseconds