Index: content/shell/renderer/test_runner/TestCommon.h |
diff --git a/content/shell/renderer/test_runner/TestCommon.h b/content/shell/renderer/test_runner/TestCommon.h |
index bdf3ea773f1fe2f779c920356518beac9621d7ec..7144158c3320758bd7daff6f5bf3eee8c961035e 100644 |
--- a/content/shell/renderer/test_runner/TestCommon.h |
+++ b/content/shell/renderer/test_runner/TestCommon.h |
@@ -14,7 +14,7 @@ |
#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'; } |
@@ -22,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_ |