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) { |