| 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 dfcd2cbcb3e2fe0a4a86e7eddf0d8d356170ddbc..e981b9e74a2521a1a8ee58dfa9d4719f5eac161a 100644
|
| --- a/chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc
|
| +++ b/chrome/browser/ui/webui/chromeos/mobile_setup_ui.cc
|
| @@ -521,7 +521,7 @@ void MobileSetupHandler::HandleGetDeviceInfo(const base::ListValue* args) {
|
| // For non-LTE networks network state is ignored, so report the portal is
|
| // reachable, so it gets shown.
|
| web_ui()->CallJavascriptFunctionUnsafe(kJsConnectivityChangedCallback,
|
| - base::FundamentalValue(true));
|
| + base::Value(true));
|
| }
|
| }
|
|
|
| @@ -603,7 +603,7 @@ void MobileSetupHandler::UpdatePortalReachability(
|
| if (force_notification || portal_reachable != lte_portal_reachable_) {
|
| web_ui()->CallJavascriptFunctionUnsafe(
|
| kJsConnectivityChangedCallback,
|
| - base::FundamentalValue(portal_reachable));
|
| + base::Value(portal_reachable));
|
| }
|
|
|
| lte_portal_reachable_ = portal_reachable;
|
| @@ -646,7 +646,7 @@ void MobileSetupUI::DidFailProvisionalLoad(
|
| if (render_frame_host->GetFrameName() != "paymentForm")
|
| return;
|
|
|
| - base::FundamentalValue result_value(-error_code);
|
| + base::Value result_value(-error_code);
|
| web_ui()->CallJavascriptFunctionUnsafe(kJsPortalFrameLoadFailedCallback,
|
| result_value);
|
| }
|
|
|