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

Unified Diff: Source/platform/Prerender.cpp

Issue 61773005: Rename WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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/Prerender.h ('k') | Source/platform/PurgeableBuffer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/Prerender.cpp
diff --git a/Source/platform/Prerender.cpp b/Source/platform/Prerender.cpp
index f23a01bf7fd188d2f3724a303b52c725f1486084..be32567e715bca61015795cfc30565439bd407cc 100644
--- a/Source/platform/Prerender.cpp
+++ b/Source/platform/Prerender.cpp
@@ -62,26 +62,26 @@ void Prerender::removeClient()
void Prerender::add()
{
- WebKit::WebPrerenderingSupport* platform = WebKit::WebPrerenderingSupport::current();
+ blink::WebPrerenderingSupport* platform = blink::WebPrerenderingSupport::current();
if (!platform)
return;
- platform->add(WebKit::WebPrerender(this));
+ platform->add(blink::WebPrerender(this));
}
void Prerender::cancel()
{
- WebKit::WebPrerenderingSupport* platform = WebKit::WebPrerenderingSupport::current();
+ blink::WebPrerenderingSupport* platform = blink::WebPrerenderingSupport::current();
if (!platform)
return;
- platform->cancel(WebKit::WebPrerender(this));
+ platform->cancel(blink::WebPrerender(this));
}
void Prerender::abandon()
{
- WebKit::WebPrerenderingSupport* platform = WebKit::WebPrerenderingSupport::current();
+ blink::WebPrerenderingSupport* platform = blink::WebPrerenderingSupport::current();
if (!platform)
return;
- platform->abandon(WebKit::WebPrerender(this));
+ platform->abandon(blink::WebPrerender(this));
}
void Prerender::didStartPrerender()
« no previous file with comments | « Source/platform/Prerender.h ('k') | Source/platform/PurgeableBuffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698