summaryrefslogtreecommitdiffstats
path: root/components/test_runner/test_common.h
diff options
context:
space:
mode:
authorjochen <jochen@chromium.org>2015-06-05 09:40:41 -0700
committerCommit bot <commit-bot@chromium.org>2015-06-05 16:41:07 +0000
commit746754c581f8a0d0b6d1b9ec2256077391eed1b2 (patch)
treeb5baaf5828e36080bede348ba025032c6d0fe366 /components/test_runner/test_common.h
parentc9fc48112618de5f0caca5b773a920a984fbf138 (diff)
downloadchromium_src-746754c581f8a0d0b6d1b9ec2256077391eed1b2.zip
chromium_src-746754c581f8a0d0b6d1b9ec2256077391eed1b2.tar.gz
chromium_src-746754c581f8a0d0b6d1b9ec2256077391eed1b2.tar.bz2
Turn test runner library into an actual component
The main motivation is to enforce correct layering and dependencies BUG=478250 R=jam@chromium.org Review URL: https://codereview.chromium.org/1169493003 Cr-Commit-Position: refs/heads/master@{#333065}
Diffstat (limited to 'components/test_runner/test_common.h')
-rw-r--r--components/test_runner/test_common.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/components/test_runner/test_common.h b/components/test_runner/test_common.h
index 86d8432..973b85c 100644
--- a/components/test_runner/test_common.h
+++ b/components/test_runner/test_common.h
@@ -7,6 +7,8 @@
#include <string>
+#include "components/test_runner/test_runner_export.h"
+
namespace test_runner {
inline bool IsASCIIAlpha(char ch) {
@@ -17,7 +19,7 @@ inline bool IsNotASCIIAlpha(char ch) {
return !IsASCIIAlpha(ch);
}
-std::string NormalizeLayoutTestURL(const std::string& url);
+TEST_RUNNER_EXPORT std::string NormalizeLayoutTestURL(const std::string& url);
} // namespace test_runner