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/browser/ui/webui/chromeos/mobile_setup_ui.cc

Issue 1172753003: Move LowerCaseEqualsASCII to base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@string_util
Patch Set: 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/browser/ui/views/keyboard_access_browsertest.cc ('k') | chrome/installer/setup/install_worker.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc
diff --git a/chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc b/chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc
index cf35c04b229708ddff6cac30de572ccf801ebb2b..abaf4c8f9df8b88b9fb56c6814909aa6764baea9 100644
--- a/chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc
+++ b/chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc
@@ -108,7 +108,7 @@ void GetDeviceInfo(const base::DictionaryValue& properties,
value->SetString("activation_type", activation_type);
value->SetString("carrier", name);
value->SetString("payment_url", payment_url);
- if (LowerCaseEqualsASCII(post_method, "post") && !post_data.empty())
+ if (base::LowerCaseEqualsASCII(post_method, "post") && !post_data.empty())
value->SetString("post_data", post_data);
// Use the cached DeviceState properties.
@@ -464,7 +464,7 @@ void MobileSetupHandler::HandleSetTransactionStatus(
return;
MobileActivator::GetInstance()->OnSetTransactionStatus(
- LowerCaseEqualsASCII(status, kJsApiResultOK));
+ base::LowerCaseEqualsASCII(status, kJsApiResultOK));
}
void MobileSetupHandler::HandlePaymentPortalLoad(const base::ListValue* args) {
@@ -481,7 +481,7 @@ void MobileSetupHandler::HandlePaymentPortalLoad(const base::ListValue* args) {
return;
MobileActivator::GetInstance()->OnPortalLoaded(
- LowerCaseEqualsASCII(result, kJsApiResultOK));
+ base::LowerCaseEqualsASCII(result, kJsApiResultOK));
}
void MobileSetupHandler::HandleGetDeviceInfo(const base::ListValue* args) {
« no previous file with comments | « chrome/browser/ui/views/keyboard_access_browsertest.cc ('k') | chrome/installer/setup/install_worker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698