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; |