OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CC_INPUT_TOP_CONTROLS_MANAGER_H_ | 5 #ifndef CC_INPUT_TOP_CONTROLS_MANAGER_H_ |
6 #define CC_INPUT_TOP_CONTROLS_MANAGER_H_ | 6 #define CC_INPUT_TOP_CONTROLS_MANAGER_H_ |
7 | 7 |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
10 #include "cc/input/top_controls_state.h" | 10 #include "cc/input/top_controls_state.h" |
11 #include "cc/layers/layer_impl.h" | 11 #include "cc/layers/layer_impl.h" |
12 #include "ui/gfx/size.h" | 12 #include "ui/gfx/geometry/size.h" |
13 #include "ui/gfx/vector2d_f.h" | 13 #include "ui/gfx/geometry/vector2d_f.h" |
14 | 14 |
15 namespace base { | 15 namespace base { |
16 class TimeTicks; | 16 class TimeTicks; |
17 } | 17 } |
18 | 18 |
19 namespace cc { | 19 namespace cc { |
20 | 20 |
21 class KeyframedFloatAnimationCurve; | 21 class KeyframedFloatAnimationCurve; |
22 class LayerTreeImpl; | 22 class LayerTreeImpl; |
23 class TopControlsManagerClient; | 23 class TopControlsManagerClient; |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 float top_controls_hide_height_; | 97 float top_controls_hide_height_; |
98 | 98 |
99 bool pinch_gesture_active_; | 99 bool pinch_gesture_active_; |
100 | 100 |
101 DISALLOW_COPY_AND_ASSIGN(TopControlsManager); | 101 DISALLOW_COPY_AND_ASSIGN(TopControlsManager); |
102 }; | 102 }; |
103 | 103 |
104 } // namespace cc | 104 } // namespace cc |
105 | 105 |
106 #endif // CC_INPUT_TOP_CONTROLS_MANAGER_H_ | 106 #endif // CC_INPUT_TOP_CONTROLS_MANAGER_H_ |
OLD | NEW |