summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/web/EditorClientImpl.cpp
diff options
context:
space:
mode:
authorZeno Albisser <zeno.albisser@theqtcompany.com>2014-12-05 15:04:29 +0100
committerAndras Becsi <andras.becsi@theqtcompany.com>2014-12-09 10:49:28 +0100
commitaf6588f8d723931a298c995fa97259bb7f7deb55 (patch)
tree060ca707847ba1735f01af2372e0d5e494dc0366 /chromium/third_party/WebKit/Source/web/EditorClientImpl.cpp
parent2fff84d821cc7b1c785f6404e0f8091333283e74 (diff)
BASELINE: Update chromium to 40.0.2214.28 and ninja to 1.5.3.
Change-Id: I759465284fd64d59ad120219cbe257f7402c4181 Reviewed-by: Andras Becsi <andras.becsi@theqtcompany.com>
Diffstat (limited to 'chromium/third_party/WebKit/Source/web/EditorClientImpl.cpp')
-rw-r--r--chromium/third_party/WebKit/Source/web/EditorClientImpl.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/chromium/third_party/WebKit/Source/web/EditorClientImpl.cpp b/chromium/third_party/WebKit/Source/web/EditorClientImpl.cpp
index ebaa7c63a56..44fbb4850ca 100644
--- a/chromium/third_party/WebKit/Source/web/EditorClientImpl.cpp
+++ b/chromium/third_party/WebKit/Source/web/EditorClientImpl.cpp
@@ -34,8 +34,6 @@
#include "web/WebLocalFrameImpl.h"
#include "web/WebViewImpl.h"
-using namespace WebCore;
-
namespace blink {
EditorClientImpl::EditorClientImpl(WebViewImpl* webview)
@@ -47,11 +45,11 @@ EditorClientImpl::~EditorClientImpl()
{
}
-void EditorClientImpl::respondToChangedSelection(LocalFrame* frame, WebCore::SelectionType selectionType)
+void EditorClientImpl::respondToChangedSelection(LocalFrame* frame, SelectionType selectionType)
{
WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(frame);
if (webFrame->client())
- webFrame->client()->didChangeSelection(selectionType != WebCore::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