| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |