Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(209)

Side by Side Diff: ash/rotator/screen_rotation_animator_observer.h

Issue 2728803002: Handles users rotating screen too early (Closed)
Patch Set: Add MultiLayerAnimatorTestController to controll test animation. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698