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 #include "cc/input/top_controls_manager.h" | 5 #include "cc/input/top_controls_manager.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "cc/animation/keyframed_animation_curve.h" | 10 #include "cc/animation/keyframed_animation_curve.h" |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 } | 100 } |
101 | 101 |
102 gfx::Vector2dF TopControlsManager::ScrollBy( | 102 gfx::Vector2dF TopControlsManager::ScrollBy( |
103 const gfx::Vector2dF& pending_delta) { | 103 const gfx::Vector2dF& pending_delta) { |
104 if (!TopControlsHeight()) | 104 if (!TopControlsHeight()) |
105 return pending_delta; | 105 return pending_delta; |
106 | 106 |
107 if (pinch_gesture_active_) | 107 if (pinch_gesture_active_) |
108 return pending_delta; | 108 return pending_delta; |
109 | 109 |
| 110 if (!TopControlsHeight()) |
| 111 return pending_delta; |
| 112 |
110 if (permitted_state_ == SHOWN && pending_delta.y() > 0) | 113 if (permitted_state_ == SHOWN && pending_delta.y() > 0) |
111 return pending_delta; | 114 return pending_delta; |
112 else if (permitted_state_ == HIDDEN && pending_delta.y() < 0) | 115 else if (permitted_state_ == HIDDEN && pending_delta.y() < 0) |
113 return pending_delta; | 116 return pending_delta; |
114 | 117 |
115 accumulated_scroll_delta_ += pending_delta.y(); | 118 accumulated_scroll_delta_ += pending_delta.y(); |
116 | 119 |
117 float old_offset = ContentTopOffset(); | 120 float old_offset = ContentTopOffset(); |
118 client_->SetCurrentTopControlsShownRatio( | 121 client_->SetCurrentTopControlsShownRatio( |
119 (baseline_content_offset_ - accumulated_scroll_delta_) / | 122 (baseline_content_offset_ - accumulated_scroll_delta_) / |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
234 } | 237 } |
235 return false; | 238 return false; |
236 } | 239 } |
237 | 240 |
238 void TopControlsManager::ResetBaseline() { | 241 void TopControlsManager::ResetBaseline() { |
239 accumulated_scroll_delta_ = 0.f; | 242 accumulated_scroll_delta_ = 0.f; |
240 baseline_content_offset_ = ContentTopOffset(); | 243 baseline_content_offset_ = ContentTopOffset(); |
241 } | 244 } |
242 | 245 |
243 } // namespace cc | 246 } // namespace cc |
OLD | NEW |