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

Unified Diff: chrome/installer/gcapi/gcapi_omaha_experiment.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 | « chrome/installer/gcapi/gcapi.cc ('k') | chrome/installer/util/delete_after_reboot_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/gcapi/gcapi_omaha_experiment.cc
diff --git a/chrome/installer/gcapi/gcapi_omaha_experiment.cc b/chrome/installer/gcapi/gcapi_omaha_experiment.cc
index c49de3d34353007b108cfb065f1f44abb33ff0ad..30c013763c433e5db63b8e5ed8ed1821e28d0712 100644
--- a/chrome/installer/gcapi/gcapi_omaha_experiment.cc
+++ b/chrome/installer/gcapi/gcapi_omaha_experiment.cc
@@ -50,7 +50,7 @@ bool SetExperimentLabel(const wchar_t* brand_code,
base::string16 new_labels;
for (std::vector<base::string16>::const_iterator it = entries.begin();
it != entries.end(); ++it) {
- if (!it->empty() && !StartsWith(*it, label + L"=", true)) {
+ if (!it->empty() && !base::StartsWith(*it, label + L"=", true)) {
new_labels += *it;
new_labels += google_update::kExperimentLabelSeparator;
}
« no previous file with comments | « chrome/installer/gcapi/gcapi.cc ('k') | chrome/installer/util/delete_after_reboot_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698