| Index: Source/web/EditorClientImpl.cpp
|
| diff --git a/Source/web/EditorClientImpl.cpp b/Source/web/EditorClientImpl.cpp
|
| index 1f5093529418253494c85c8efd4936a45e7965f7..44fbb4850ca0c8a31b42e48fd72a105d95a6656f 100644
|
| --- a/Source/web/EditorClientImpl.cpp
|
| +++ b/Source/web/EditorClientImpl.cpp
|
| @@ -34,8 +34,6 @@
|
| #include "web/WebLocalFrameImpl.h"
|
| #include "web/WebViewImpl.h"
|
|
|
| -using namespace blink;
|
| -
|
| namespace blink {
|
|
|
| EditorClientImpl::EditorClientImpl(WebViewImpl* webview)
|
| @@ -47,11 +45,11 @@ EditorClientImpl::~EditorClientImpl()
|
| {
|
| }
|
|
|
| -void EditorClientImpl::respondToChangedSelection(LocalFrame* frame, blink::SelectionType selectionType)
|
| +void EditorClientImpl::respondToChangedSelection(LocalFrame* frame, SelectionType selectionType)
|
| {
|
| WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(frame);
|
| if (webFrame->client())
|
| - webFrame->client()->didChangeSelection(selectionType != blink::RangeSelection);
|
| + webFrame->client()->didChangeSelection(selectionType != RangeSelection);
|
| }
|
|
|
| void EditorClientImpl::respondToChangedContents()
|
| @@ -81,4 +79,4 @@ bool EditorClientImpl::handleKeyboardEvent()
|
| return m_webView->client() && m_webView->client()->handleCurrentKeyboardEvent();
|
| }
|
|
|
| -} // namesace blink
|
| +} // namespace blink
|
|
|