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

Unified Diff: Source/web/FrameLoaderClientImpl.cpp

Issue 398673003: Rename WebCore namespace to blink in bindings and web (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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/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 2d3fef74e6fa8239925534d18451519c4d2bc6a8..3e1a0990ea52a35c9202fff5c6cdfb451f66867a 100644
--- a/Source/web/FrameLoaderClientImpl.cpp
+++ b/Source/web/FrameLoaderClientImpl.cpp
@@ -97,7 +97,7 @@
#include "wtf/text/WTFString.h"
#include <v8.h>
-using namespace WebCore;
+using namespace blink;
namespace blink {
@@ -303,7 +303,7 @@ void FrameLoaderClientImpl::detachedFromParent()
m_webFrame->setClient(0);
client->frameDetached(m_webFrame);
- // Clear our reference to WebCore::LocalFrame at the very end, in case the client
+ // Clear our reference to blink::LocalFrame at the very end, in case the client
// refers to it.
m_webFrame->setWebCoreFrame(nullptr);
}
@@ -395,7 +395,7 @@ void FrameLoaderClientImpl::dispatchDidReceiveTitle(const String& title)
m_webFrame->client()->didReceiveTitle(m_webFrame, title, WebTextDirectionLeftToRight);
}
-void FrameLoaderClientImpl::dispatchDidChangeIcons(WebCore::IconType type)
+void FrameLoaderClientImpl::dispatchDidChangeIcons(blink::IconType type)
{
if (m_webFrame->client())
m_webFrame->client()->didChangeIcon(m_webFrame, static_cast<WebIconURL::Type>(type));
« 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