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

Unified Diff: Source/web/FrameLoaderClientImpl.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/web/FrameLoaderClientImpl.h ('k') | Source/web/FullscreenController.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/FrameLoaderClientImpl.cpp
diff --git a/Source/web/FrameLoaderClientImpl.cpp b/Source/web/FrameLoaderClientImpl.cpp
index 75a67ff224c1f7975a958889fc54e86e56bb633b..2813a9376466494417a6aa13e24bddd61a36dd9b 100644
--- a/Source/web/FrameLoaderClientImpl.cpp
+++ b/Source/web/FrameLoaderClientImpl.cpp
@@ -98,7 +98,7 @@
using namespace WebCore;
-namespace WebKit {
+namespace blink {
FrameLoaderClientImpl::FrameLoaderClientImpl(WebFrameImpl* frame)
: m_webFrame(frame)
@@ -315,7 +315,7 @@ void FrameLoaderClientImpl::dispatchDidChangeResourcePriority(unsigned long iden
ResourceLoadPriority priority)
{
if (m_webFrame->client())
- m_webFrame->client()->didChangeResourcePriority(m_webFrame, identifier, static_cast<WebKit::WebURLRequest::Priority>(priority));
+ m_webFrame->client()->didChangeResourcePriority(m_webFrame, identifier, static_cast<blink::WebURLRequest::Priority>(priority));
}
// Called when a particular resource load completes
@@ -567,7 +567,7 @@ String FrameLoaderClientImpl::userAgent(const KURL& url)
if (!override.isEmpty())
return override;
- return WebKit::Platform::current()->userAgent(url);
+ return blink::Platform::current()->userAgent(url);
}
String FrameLoaderClientImpl::doNotTrackValue()
@@ -784,4 +784,4 @@ void FrameLoaderClientImpl::didStopAllLoaders()
m_webFrame->client()->didAbortLoading(m_webFrame);
}
-} // namespace WebKit
+} // namespace blink
« no previous file with comments | « Source/web/FrameLoaderClientImpl.h ('k') | Source/web/FullscreenController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698