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/macros.h" |
8 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
9 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
10 #include "cc/input/top_controls_state.h" | 11 #include "cc/input/top_controls_state.h" |
11 #include "cc/layers/layer_impl.h" | 12 #include "cc/layers/layer_impl.h" |
12 #include "ui/gfx/geometry/size.h" | 13 #include "ui/gfx/geometry/size.h" |
13 #include "ui/gfx/geometry/vector2d_f.h" | 14 #include "ui/gfx/geometry/vector2d_f.h" |
14 | 15 |
15 namespace base { | 16 namespace base { |
16 class TimeTicks; | 17 class TimeTicks; |
17 } | 18 } |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 float top_controls_hide_threshold_; | 100 float top_controls_hide_threshold_; |
100 | 101 |
101 bool pinch_gesture_active_; | 102 bool pinch_gesture_active_; |
102 | 103 |
103 DISALLOW_COPY_AND_ASSIGN(TopControlsManager); | 104 DISALLOW_COPY_AND_ASSIGN(TopControlsManager); |
104 }; | 105 }; |
105 | 106 |
106 } // namespace cc | 107 } // namespace cc |
107 | 108 |
108 #endif // CC_INPUT_TOP_CONTROLS_MANAGER_H_ | 109 #endif // CC_INPUT_TOP_CONTROLS_MANAGER_H_ |
OLD | NEW |