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

Unified Diff: content/shell/renderer/test_runner/TestCommon.h

Issue 264003003: test_runner: Move everything else into content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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
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_
« no previous file with comments | « content/shell/renderer/test_runner/SpellCheckClient.cpp ('k') | content/shell/renderer/test_runner/TestCommon.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698