| Index: Source/web/tests/FrameTestHelpers.cpp
|
| diff --git a/Source/web/tests/FrameTestHelpers.cpp b/Source/web/tests/FrameTestHelpers.cpp
|
| index 0b4153c56a7ca1305404c15b3ca45d7b2d9a229f..4a8a278f16be0808c2c18b64ab436c6334c7adbc 100644
|
| --- a/Source/web/tests/FrameTestHelpers.cpp
|
| +++ b/Source/web/tests/FrameTestHelpers.cpp
|
| @@ -71,7 +71,7 @@ TestWebFrameClient* testClientForFrame(WebFrame* frame)
|
|
|
| class QuitTask : public WebThread::Task {
|
| public:
|
| - void PostThis(WebCore::Timer<QuitTask>*)
|
| + void PostThis(blink::Timer<QuitTask>*)
|
| {
|
| // We don't just quit here because the SharedTimer may be part-way
|
| // through the current queue of tasks when runPendingTasks was called,
|
| @@ -247,7 +247,7 @@ void pumpPendingRequestsDoNotUse(WebFrame* frame)
|
| void runPendingTasks()
|
| {
|
| // Pending tasks include Timers that have been scheduled.
|
| - WebCore::Timer<QuitTask> quitOnTimeout(new QuitTask, &QuitTask::PostThis);
|
| + blink::Timer<QuitTask> quitOnTimeout(new QuitTask, &QuitTask::PostThis);
|
| quitOnTimeout.startOneShot(0, FROM_HERE);
|
| Platform::current()->currentThread()->enterRunLoop();
|
| }
|
|
|