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() |