Index: ash/system/power/power_status_observer.h |
diff --git a/ash/system/power/power_status_observer.h b/ash/system/power/power_status_observer.h |
index 725d38878fd7b6ebff644e0f9e3502abae36b668..84eef07e045535cd8fa820f437cc80fffb083832 100644 |
--- a/ash/system/power/power_status_observer.h |
+++ b/ash/system/power/power_status_observer.h |
@@ -5,15 +5,20 @@ |
#ifndef ASH_SYSTEM_POWER_POWER_STATUS_OBSERVER_H_ |
#define ASH_SYSTEM_POWER_POWER_STATUS_OBSERVER_H_ |
-namespace ash { |
+namespace chromeos { |
oshima
2012/03/24 06:46:04
did you mean to move this to chromeos/dbus?
hashimoto
2012/03/24 07:36:00
I want to move this to ::chromeos because PowerMan
oshima
2012/03/24 19:15:30
Not sure if I understand. Can you elaborate?
hashimoto
2012/03/25 07:09:31
The reason why I place PowerSupplyStatus under nam
|
struct PowerSupplyStatus; |
+} // namespace chromeos |
+ |
+namespace ash { |
+ |
class PowerStatusObserver { |
public: |
virtual ~PowerStatusObserver() {} |
- virtual void OnPowerStatusChanged(const PowerSupplyStatus& status) = 0; |
+ virtual void OnPowerStatusChanged( |
+ const chromeos::PowerSupplyStatus& status) = 0; |
}; |
}; |