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

Unified Diff: Source/web/PopupContainer.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/PageWidgetDelegate.cpp ('k') | Source/web/PopupListBox.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/PopupContainer.cpp
diff --git a/Source/web/PopupContainer.cpp b/Source/web/PopupContainer.cpp
index 3015cb7dbd73345062a927e426d3cc3515a3dc8e..1ad094b1270a9ca061ac592a057fd06e72f9f67a 100644
--- a/Source/web/PopupContainer.cpp
+++ b/Source/web/PopupContainer.cpp
@@ -55,8 +55,6 @@
#include "web/WebViewImpl.h"
#include <limits>
-using namespace blink;
-
namespace blink {
static const int borderSize = 1;
@@ -493,7 +491,7 @@ void PopupContainer::getPopupMenuInfo(WebPopupMenuInfo* info)
outputItem.label = inputItem.label;
outputItem.enabled = inputItem.enabled;
- if (inputItem.textDirection == blink::RTL)
+ if (inputItem.textDirection == RTL)
outputItem.textDirection = WebTextDirectionRightToLeft;
else
outputItem.textDirection = WebTextDirectionLeftToRight;
« no previous file with comments | « Source/web/PageWidgetDelegate.cpp ('k') | Source/web/PopupListBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698