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

Unified Diff: chromeos/settings/cros_settings_provider.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 | « chromeos/disks/disk_mount_manager.cc ('k') | chromeos/system/version_loader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/settings/cros_settings_provider.cc
diff --git a/chromeos/settings/cros_settings_provider.cc b/chromeos/settings/cros_settings_provider.cc
index 98faf718ca788efd615b7daeff331ddc8e26d115..dceed62f9e783613057bd2a6c4f1a95966e6ec99 100644
--- a/chromeos/settings/cros_settings_provider.cc
+++ b/chromeos/settings/cros_settings_provider.cc
@@ -27,7 +27,7 @@ void CrosSettingsProvider::Set(const std::string& path,
// It should not reach here from UI in the guest mode, but just in case.
if (base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kGuestSession) &&
- !::StartsWithASCII(path, "cros.session.", true)) {
+ !::base::StartsWithASCII(path, "cros.session.", true)) {
LOG(ERROR) << "Ignoring the guest request to change: " << path;
return;
}
« no previous file with comments | « chromeos/disks/disk_mount_manager.cc ('k') | chromeos/system/version_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698