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

Side by Side Diff: chrome/browser/ui/views/frame/scroll_end_effect_controller_ash.cc

Issue 645223003: Change overscroll functions to pass floats. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
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 "chrome/browser/ui/views/frame/scroll_end_effect_controller_ash.h" 5 #include "chrome/browser/ui/views/frame/scroll_end_effect_controller_ash.h"
6 6
7 ScrollEndEffectController* ScrollEndEffectController::Create() { 7 ScrollEndEffectController* ScrollEndEffectController::Create() {
8 return new ScrollEndEffectControllerAsh(); 8 return new ScrollEndEffectControllerAsh();
9 } 9 }
10 10
11 ScrollEndEffectControllerAsh::ScrollEndEffectControllerAsh() { 11 ScrollEndEffectControllerAsh::ScrollEndEffectControllerAsh() {
12 } 12 }
13 13
14 ScrollEndEffectControllerAsh::~ScrollEndEffectControllerAsh() { 14 ScrollEndEffectControllerAsh::~ScrollEndEffectControllerAsh() {
15 } 15 }
16 16
17 void ScrollEndEffectControllerAsh::OverscrollUpdate(int delta_y) { 17 void ScrollEndEffectControllerAsh::OverscrollUpdate(float delta_y) {
18 // TODO(rharrison): Implement initial version of scroll end effect 18 // TODO(rharrison): Implement initial version of scroll end effect
19 } 19 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698