Index: Source/bindings/v8/custom/V8CSSStyleDeclarationCustom.cpp |
diff --git a/Source/bindings/v8/custom/V8CSSStyleDeclarationCustom.cpp b/Source/bindings/v8/custom/V8CSSStyleDeclarationCustom.cpp |
index a9cc9234c0f4fd8a542ef160c94df08a79ea968b..10ee2e49e3e447500a3b68254408a7a1a5189109 100644 |
--- a/Source/bindings/v8/custom/V8CSSStyleDeclarationCustom.cpp |
+++ b/Source/bindings/v8/custom/V8CSSStyleDeclarationCustom.cpp |
@@ -49,7 +49,6 @@ |
#include "wtf/text/StringConcatenate.h" |
using namespace WTF; |
-using namespace std; |
namespace WebCore { |
@@ -165,7 +164,7 @@ void V8CSSStyleDeclaration::namedPropertyEnumeratorCustom(const v8::PropertyCall |
if (RuntimeCSSEnabled::isCSSPropertyEnabled(propertyId)) |
propertyNames.append(getJSPropertyName(propertyId)); |
} |
- sort(propertyNames.begin(), propertyNames.end(), codePointCompareLessThan); |
+ std::sort(propertyNames.begin(), propertyNames.end(), codePointCompareLessThan); |
propertyNamesLength = propertyNames.size(); |
} |