| Index: base/system_monitor/system_monitor.h
|
| diff --git a/base/system_monitor/system_monitor.h b/base/system_monitor/system_monitor.h
|
| index e05df742109a1f54f3f9cc51a04b72eb5ac1deff..f179f383c45f69e7a1c12228ed2a938f71fbc85d 100644
|
| --- a/base/system_monitor/system_monitor.h
|
| +++ b/base/system_monitor/system_monitor.h
|
| @@ -156,7 +156,8 @@ class BASE_EXPORT SystemMonitor {
|
| MediaDeviceType type,
|
| const FilePath::StringType& location) {}
|
|
|
| - virtual void OnMediaDeviceDetached(const std::string& id) {}
|
| + virtual void OnMediaDeviceDetached(const std::string& id,
|
| + const FilePath::StringType& location) {}
|
|
|
| protected:
|
| virtual ~DevicesChangedObserver() {}
|
| @@ -215,8 +216,9 @@ class BASE_EXPORT SystemMonitor {
|
| void NotifyMediaDeviceAttached(const std::string& id,
|
| const string16& name,
|
| MediaDeviceType type,
|
| - const FilePath::StringType& data);
|
| - void NotifyMediaDeviceDetached(const std::string& id);
|
| + const FilePath::StringType& location);
|
| + void NotifyMediaDeviceDetached(const std::string& id,
|
| + const FilePath::StringType& location);
|
| void NotifyPowerStateChange();
|
| void NotifySuspend();
|
| void NotifyResume();
|
|
|