Index: third_party/WebKit/Source/platform/TimerTest.cpp |
diff --git a/third_party/WebKit/Source/platform/TimerTest.cpp b/third_party/WebKit/Source/platform/TimerTest.cpp |
index edbff115f8fa4e3d70d4752cd44003dbfbeda8fb..d5ccc0a527c79697a7bcaa8b79070eddf3da0fb0 100644 |
--- a/third_party/WebKit/Source/platform/TimerTest.cpp |
+++ b/third_party/WebKit/Source/platform/TimerTest.cpp |
@@ -34,12 +34,12 @@ class TimerTest : public testing::Test { |
} |
void countingTask(TimerBase*) { |
- m_runTimes.append(monotonicallyIncreasingTime()); |
+ m_runTimes.push_back(monotonicallyIncreasingTime()); |
} |
void recordNextFireTimeTask(TimerBase* timer) { |
- m_nextFireTimes.append(monotonicallyIncreasingTime() + |
- timer->nextFireInterval()); |
+ m_nextFireTimes.push_back(monotonicallyIncreasingTime() + |
+ timer->nextFireInterval()); |
} |
void runUntilDeadline(double deadline) { |