Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / content / shell / renderer / test_runner / TestCommon.h
index 12946e8..7144158 100644 (file)
@@ -9,13 +9,12 @@
 #include <string>
 
 #include "base/compiler_specific.h"
-#include "third_party/WebKit/public/platform/WebCommon.h"
 
 #if defined(WIN32)
 #define snprintf(str, size, ...) _snprintf_s(str, size, size, __VA_ARGS__)
 #endif
 
-namespace WebTestRunner {
+namespace content {
 
 inline bool isASCIIAlpha(char ch) { return (ch | 0x20) >= 'a' && (ch | 0x20) <= 'z'; }
 
@@ -23,6 +22,6 @@ inline bool isNotASCIIAlpha(char ch) { return !isASCIIAlpha(ch); }
 
 std::string normalizeLayoutTestURL(const std::string& url);
 
-}
+}  // namespace content
 
 #endif  // CONTENT_SHELL_RENDERER_TEST_RUNNER_TESTCOMMON_H_