Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 #ifndef ASH_ROTATOR_SCREEN_ROTATION_ANIMATOR_OBSERVER_H | |
| 2 #define ASH_ROTATOR_SCREEN_ROTATION_ANIMATOR_OBSERVER_H | |
| 3 | |
| 4 #include "ash/ash_export.h" | |
| 5 | |
| 6 namespace ash { | |
| 7 | |
| 8 class ScreenRotationAnimator; | |
| 9 | |
| 10 class ASH_EXPORT ScreenRotationAnimatorObserver { | |
| 11 public: | |
| 12 ScreenRotationAnimatorObserver(){}; | |
|
bruthig
2017/03/15 23:12:38
nit: I think the style guide wants a space between
wutao
2017/03/16 07:37:59
Done.
wutao
2017/03/16 07:40:50
I run cl format. It removes the space again.
bruthig
2017/03/16 20:41:57
Acknowledged.
| |
| 13 | |
| 14 virtual void OnEndedOrAbortedScreenRotationAnimation( | |
| 15 ScreenRotationAnimator* animator){}; | |
| 16 | |
| 17 protected: | |
| 18 virtual ~ScreenRotationAnimatorObserver(){}; | |
| 19 }; | |
| 20 | |
| 21 } // namespace ash | |
| 22 | |
| 23 #endif // ASH_ROTATOR_SCREEN_ROTATION_ANIMATOR_OBSERVER_H | |
| OLD | NEW |