| Index: cc/timing_function_unittest.cc
|
| diff --git a/cc/timing_function_unittest.cc b/cc/timing_function_unittest.cc
|
| index 055892715a9f15197c382b6f5fadd5c10b0ee41d..95280f00b339e33597eccef03958765c4e399d5a 100644
|
| --- a/cc/timing_function_unittest.cc
|
| +++ b/cc/timing_function_unittest.cc
|
| @@ -3,13 +3,15 @@
|
| // found in the LICENSE file.
|
|
|
| #include "cc/timing_function.h"
|
| +
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| namespace cc {
|
| namespace {
|
|
|
| TEST(TimingFunctionTest, CubicBezierTimingFunction) {
|
| - scoped_ptr<CubicBezierTimingFunction> function = CubicBezierTimingFunction::create(0.25, 0, 0.75, 1);
|
| + scoped_ptr<CubicBezierTimingFunction> function =
|
| + CubicBezierTimingFunction::create(0.25, 0, 0.75, 1);
|
|
|
| double epsilon = 0.00015;
|
|
|
|
|