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

Unified Diff: Source/web/EditorClientImpl.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/EditorClientImpl.h ('k') | Source/web/EventListenerWrapper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/EditorClientImpl.cpp
diff --git a/Source/web/EditorClientImpl.cpp b/Source/web/EditorClientImpl.cpp
index ebaa7c63a56e08cc4bf06642ede408b64346bbd7..1f5093529418253494c85c8efd4936a45e7965f7 100644
--- a/Source/web/EditorClientImpl.cpp
+++ b/Source/web/EditorClientImpl.cpp
@@ -34,7 +34,7 @@
#include "web/WebLocalFrameImpl.h"
#include "web/WebViewImpl.h"
-using namespace WebCore;
+using namespace blink;
namespace blink {
@@ -47,11 +47,11 @@ EditorClientImpl::~EditorClientImpl()
{
}
-void EditorClientImpl::respondToChangedSelection(LocalFrame* frame, WebCore::SelectionType selectionType)
+void EditorClientImpl::respondToChangedSelection(LocalFrame* frame, blink::SelectionType selectionType)
{
WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(frame);
if (webFrame->client())
- webFrame->client()->didChangeSelection(selectionType != WebCore::RangeSelection);
+ webFrame->client()->didChangeSelection(selectionType != blink::RangeSelection);
}
void EditorClientImpl::respondToChangedContents()
« no previous file with comments | « Source/web/EditorClientImpl.h ('k') | Source/web/EventListenerWrapper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698