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

Side by Side Diff: third_party/WebKit/Source/core/dom/ScriptRunnerTest.cpp

Issue 1373503002: Fix the drift in repeating timers (try #2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename some variables and add a todo Created 5 years, 2 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #include "config.h" 5 #include "config.h"
6 #include "core/dom/ScriptRunner.h" 6 #include "core/dom/ScriptRunner.h"
7 7
8 #include "core/dom/Document.h" 8 #include "core/dom/Document.h"
9 #include "core/dom/Element.h" 9 #include "core/dom/Element.h"
10 #include "core/dom/ScriptLoader.h" 10 #include "core/dom/ScriptLoader.h"
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 class MockWebTaskRunner : public WebTaskRunner { 70 class MockWebTaskRunner : public WebTaskRunner {
71 public: 71 public:
72 explicit MockWebTaskRunner(Deque<OwnPtr<WebTaskRunner::Task>>* tasks) : m_ta sks(tasks) { } 72 explicit MockWebTaskRunner(Deque<OwnPtr<WebTaskRunner::Task>>* tasks) : m_ta sks(tasks) { }
73 ~MockWebTaskRunner() override { } 73 ~MockWebTaskRunner() override { }
74 74
75 virtual void postTask(const WebTraceLocation&, Task* task) 75 virtual void postTask(const WebTraceLocation&, Task* task)
76 { 76 {
77 m_tasks->append(adoptPtr(task)); 77 m_tasks->append(adoptPtr(task));
78 } 78 }
79 79
80 void postDelayedTask(const WebTraceLocation&, Task* task, long long delayMs) override 80 void postDelayedTask(const WebTraceLocation&, Task* task, double delayMs) ov erride
81 { 81 {
82 ASSERT_NOT_REACHED(); 82 ASSERT_NOT_REACHED();
83 } 83 }
84 84
85 Deque<OwnPtr<WebTaskRunner::Task>>* m_tasks; // NOT OWNED 85 Deque<OwnPtr<WebTaskRunner::Task>>* m_tasks; // NOT OWNED
86 }; 86 };
87 87
88 class MockPlatform : public Platform, private WebScheduler { 88 class MockPlatform : public Platform, private WebScheduler {
89 public: 89 public:
90 MockPlatform() 90 MockPlatform()
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after
572 testing::Mock::VerifyAndClear(scriptLoader2.get()); 572 testing::Mock::VerifyAndClear(scriptLoader2.get());
573 testing::Mock::VerifyAndClear(scriptLoader3.get()); 573 testing::Mock::VerifyAndClear(scriptLoader3.get());
574 EXPECT_CALL(*scriptLoader2, execute()).Times(1); 574 EXPECT_CALL(*scriptLoader2, execute()).Times(1);
575 EXPECT_CALL(*scriptLoader3, execute()).Times(1); 575 EXPECT_CALL(*scriptLoader3, execute()).Times(1);
576 EXPECT_CALL(*scriptLoader2, isReady()).WillRepeatedly(Return(true)); 576 EXPECT_CALL(*scriptLoader2, isReady()).WillRepeatedly(Return(true));
577 EXPECT_CALL(*scriptLoader3, isReady()).WillRepeatedly(Return(true)); 577 EXPECT_CALL(*scriptLoader3, isReady()).WillRepeatedly(Return(true));
578 m_platform.runAllTasks(); 578 m_platform.runAllTasks();
579 } 579 }
580 580
581 } // namespace blink 581 } // namespace blink
OLDNEW
« no previous file with comments | « components/scheduler/child/web_task_runner_impl.cc ('k') | third_party/WebKit/Source/platform/Timer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698