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

Unified Diff: ui/oobe/oobe_md_ui.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 | « ui/gl/gl_version_info.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/oobe/oobe_md_ui.cc
diff --git a/ui/oobe/oobe_md_ui.cc b/ui/oobe/oobe_md_ui.cc
index 07e91b59931d1ded0a1e93c3eaacce06526bfa37..cb86c93baac3036b550446b7e00412fd83d7c75c 100644
--- a/ui/oobe/oobe_md_ui.cc
+++ b/ui/oobe/oobe_md_ui.cc
@@ -21,7 +21,7 @@ void SetUpDataSource(content::WebUIDataSource* source) {
const size_t prefix_length = arraysize(prefix) - 1;
for (size_t i = 0; i < kOobeResourcesSize; ++i) {
std::string name = kOobeResources[i].name;
- DCHECK(StartsWithASCII(name, prefix, true));
+ DCHECK(base::StartsWithASCII(name, prefix, true));
source->AddResourcePath(name.substr(prefix_length),
kOobeResources[i].value);
}
« no previous file with comments | « ui/gl/gl_version_info.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698