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

Unified Diff: Source/web/tests/FrameTestHelpers.cpp

Issue 545123002: Cleanup namespace usage in Source/web/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 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/web/tests/FrameLoaderClientImplTest.cpp ('k') | Source/web/tests/KeyboardTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/tests/FrameTestHelpers.cpp
diff --git a/Source/web/tests/FrameTestHelpers.cpp b/Source/web/tests/FrameTestHelpers.cpp
index f31809dd55aad85e6ce5dc5f1d687ec1d98973f4..cd36d5f328c3e79aca85c81d3c88d68a1e66e31f 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(blink::Timer<QuitTask>*)
+ void PostThis(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.
- blink::Timer<QuitTask> quitOnTimeout(new QuitTask, &QuitTask::PostThis);
+ Timer<QuitTask> quitOnTimeout(new QuitTask, &QuitTask::PostThis);
quitOnTimeout.startOneShot(0, FROM_HERE);
Platform::current()->currentThread()->enterRunLoop();
}
« no previous file with comments | « Source/web/tests/FrameLoaderClientImplTest.cpp ('k') | Source/web/tests/KeyboardTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698