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

Unified Diff: chrome/browser/chromeos/settings/cros_settings.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
Index: chrome/browser/chromeos/settings/cros_settings.cc
diff --git a/chrome/browser/chromeos/settings/cros_settings.cc b/chrome/browser/chromeos/settings/cros_settings.cc
index 016b33a5ce0be0e84813a2d53273e96651a3d929..b981b373641cd5850997a752b358628d0fe86c51 100644
--- a/chrome/browser/chromeos/settings/cros_settings.cc
+++ b/chrome/browser/chromeos/settings/cros_settings.cc
@@ -86,7 +86,7 @@ CrosSettings::~CrosSettings() {
}
bool CrosSettings::IsCrosSettings(const std::string& path) {
- return StartsWithASCII(path, kCrosSettingsPrefix, true);
+ return base::StartsWithASCII(path, kCrosSettingsPrefix, true);
}
void CrosSettings::Set(const std::string& path, const base::Value& in_value) {
« no previous file with comments | « chrome/browser/chromeos/proxy_cros_settings_parser.cc ('k') | chrome/browser/chromeos/system_logs/touch_log_source_ozone.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698