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

Unified Diff: Source/web/EditorClientImpl.cpp

Issue 462353003: Cleanup namespace usage in Source/web[A-V]*.cpp (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Minor updates Created 6 years, 4 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/DragClientImpl.cpp ('k') | Source/web/ExternalDateTimeChooser.cpp » ('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 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
« no previous file with comments | « Source/web/DragClientImpl.cpp ('k') | Source/web/ExternalDateTimeChooser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698