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

Side by Side Diff: ui/gfx/animation/cubic_bezier.h

Issue 140253013: Define accelerated steps time function. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updated patch: put Steps and CubicBezier in ui/gfx/animation Created 6 years, 3 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 UI_GFX_GEOMETRY_CUBIC_BEZIER_H_ 5 #ifndef UI_GFX_GEOMETRY_CUBIC_BEZIER_H_
6 #define UI_GFX_GEOMETRY_CUBIC_BEZIER_H_ 6 #define UI_GFX_GEOMETRY_CUBIC_BEZIER_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "ui/gfx/gfx_export.h" 9 #include "ui/gfx/gfx_export.h"
10 10
(...skipping 19 matching lines...) Expand all
30 double y1_; 30 double y1_;
31 double x2_; 31 double x2_;
32 double y2_; 32 double y2_;
33 33
34 DISALLOW_ASSIGN(CubicBezier); 34 DISALLOW_ASSIGN(CubicBezier);
35 }; 35 };
36 36
37 } // namespace gfx 37 } // namespace gfx
38 38
39 #endif // UI_GFX_GEOMETRY_CUBIC_BEZIER_H_ 39 #endif // UI_GFX_GEOMETRY_CUBIC_BEZIER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698