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

Unified Diff: content/public/test/test_launcher.cc

Issue 1172183002: Move StartsWith[ASCII] to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@string_util3
Patch Set: merger Created 5 years, 6 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
« no previous file with comments | « content/public/test/browser_test_utils.cc ('k') | content/renderer/savable_resources.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/test/test_launcher.cc
diff --git a/content/public/test/test_launcher.cc b/content/public/test/test_launcher.cc
index fc65ebd8a94436bf4e01d23f4f080c18388d69d3..91fe680063a5b1c6b13192a8430c1e9373b19928 100644
--- a/content/public/test/test_launcher.cc
+++ b/content/public/test/test_launcher.cc
@@ -182,12 +182,12 @@ bool WrapperTestLauncherDelegate::ShouldRunTest(
const std::string& test_name) {
all_test_names_.insert(test_case_name + "." + test_name);
- if (StartsWithASCII(test_name, kManualTestPrefix, true) &&
+ if (base::StartsWithASCII(test_name, kManualTestPrefix, true) &&
!base::CommandLine::ForCurrentProcess()->HasSwitch(kRunManualTestsFlag)) {
return false;
}
- if (StartsWithASCII(test_name, kPreTestPrefix, true)) {
+ if (base::StartsWithASCII(test_name, kPreTestPrefix, true)) {
// We will actually run PRE_ tests, but to ensure they run on the same shard
// as dependent tests, handle all these details internally.
return false;
« no previous file with comments | « content/public/test/browser_test_utils.cc ('k') | content/renderer/savable_resources.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698