| Index: athena/system/orientation_controller.h
|
| diff --git a/athena/system/orientation_controller.h b/athena/system/orientation_controller.h
|
| index 7a970029263406710a56277f0ec78bd4b573b583..f50c43871288f5fd181f3a4a15c7cd455cfa76b1 100644
|
| --- a/athena/system/orientation_controller.h
|
| +++ b/athena/system/orientation_controller.h
|
| @@ -20,8 +20,7 @@ namespace athena {
|
|
|
| // Monitors accelerometers, detecting orientation changes. When a change is
|
| // detected rotates the root window to match.
|
| -class OrientationController
|
| - : public chromeos::AccelerometerReader::Delegate {
|
| +class OrientationController : public chromeos::AccelerometerReader::Observer {
|
| public:
|
| OrientationController();
|
| ~OrientationController() override;
|
| @@ -29,9 +28,8 @@ class OrientationController
|
| void InitWith(scoped_refptr<base::TaskRunner> blocking_task_runner);
|
| void Shutdown();
|
|
|
| - // chromeos::AccelerometerReader::Delegate
|
| - virtual void HandleAccelerometerUpdate(
|
| - const ui::AccelerometerUpdate& update) override;
|
| + // chromeos::AccelerometerReader::Observer:
|
| + void OnAccelerometerUpdated(const ui::AccelerometerUpdate& update) override;
|
|
|
| private:
|
| // The last configured rotation.
|
|
|