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

Unified Diff: Source/platform/animation/TimingFunctionTest.cpp

Issue 858663002: Fix template angle bracket syntax in platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/platform/animation/KeyframeValueList.h ('k') | Source/platform/audio/AudioBus.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/animation/TimingFunctionTest.cpp
diff --git a/Source/platform/animation/TimingFunctionTest.cpp b/Source/platform/animation/TimingFunctionTest.cpp
index 85fbcb67128b10fc03cb75c4310f2ef682ce422c..5cae6cf5b5a15f928b50615d548af0415f9c12f9 100644
--- a/Source/platform/animation/TimingFunctionTest.cpp
+++ b/Source/platform/animation/TimingFunctionTest.cpp
@@ -54,7 +54,7 @@ namespace {
class TimingFunctionTest : public ::testing::Test {
public:
- void notEqualHelperLoop(Vector<std::pair<std::string, RefPtr<TimingFunction> > >& v)
+ void notEqualHelperLoop(Vector<std::pair<std::string, RefPtr<TimingFunction>> >& v)
{
for (size_t i = 0; i < v.size(); ++i) {
for (size_t j = 0; j < v.size(); ++j) {
@@ -116,7 +116,7 @@ TEST_F(TimingFunctionTest, BaseOperatorEq)
RefPtr<TimingFunction> stepsTiming1 = StepsTimingFunction::preset(StepsTimingFunction::End);
RefPtr<TimingFunction> stepsTiming2 = StepsTimingFunction::create(5, StepsTimingFunction::Start);
- Vector<std::pair<std::string, RefPtr<TimingFunction> > > v;
+ Vector<std::pair<std::string, RefPtr<TimingFunction>> > v;
v.append(std::make_pair("linearTiming", linearTiming));
v.append(std::make_pair("cubicTiming1", cubicTiming1));
v.append(std::make_pair("cubicTiming2", cubicTiming2));
@@ -155,7 +155,7 @@ TEST_F(TimingFunctionTest, CubicOperatorEq)
EXPECT_EQ(*cubicCustomTiming1, *cubicCustomTiming1);
EXPECT_EQ(*cubicCustomTiming1, *cubicCustomTiming2);
- Vector<std::pair<std::string, RefPtr<TimingFunction> > > v;
+ Vector<std::pair<std::string, RefPtr<TimingFunction>> > v;
v.append(std::make_pair("cubicEaseInTiming1", cubicEaseInTiming1));
v.append(std::make_pair("cubicEaseOutTiming1", cubicEaseOutTiming1));
v.append(std::make_pair("cubicEaseInOutTiming1", cubicEaseInOutTiming1));
@@ -193,7 +193,7 @@ TEST_F(TimingFunctionTest, StepsOperatorEq)
EXPECT_EQ(*StepsTimingFunction::create(7, StepsTimingFunction::Start), *stepsTimingCustom3);
EXPECT_EQ(*StepsTimingFunction::create(7, StepsTimingFunction::End), *stepsTimingCustom4);
- Vector<std::pair<std::string, RefPtr<TimingFunction> > > v;
+ Vector<std::pair<std::string, RefPtr<TimingFunction>> > v;
v.append(std::make_pair("stepsTimingStart1", stepsTimingStart1));
v.append(std::make_pair("stepsTimingEnd1", stepsTimingEnd1));
v.append(std::make_pair("stepsTimingCustom1", stepsTimingCustom1));
« no previous file with comments | « Source/platform/animation/KeyframeValueList.h ('k') | Source/platform/audio/AudioBus.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698