| Index: chrome/browser/ui/webui/options/chromeos/pointer_handler.cc
|
| diff --git a/chrome/browser/ui/webui/options/chromeos/pointer_handler.cc b/chrome/browser/ui/webui/options/chromeos/pointer_handler.cc
|
| index d4c42c5fd3f89851f0758f8fd2927ccb09843f0a..8845d6597da4a3cb077e03f524ae8e6a7f8e9e68 100644
|
| --- a/chrome/browser/ui/webui/options/chromeos/pointer_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/chromeos/pointer_handler.cc
|
| @@ -57,7 +57,7 @@ void PointerHandler::GetLocalizedValues(
|
|
|
| void PointerHandler::TouchpadExists(bool exists) {
|
| has_touchpad_ = exists;
|
| - base::FundamentalValue val(exists);
|
| + base::Value val(exists);
|
| web_ui()->CallJavascriptFunctionUnsafe("PointerOverlay.showTouchpadControls",
|
| val);
|
| UpdateTitle();
|
| @@ -65,7 +65,7 @@ void PointerHandler::TouchpadExists(bool exists) {
|
|
|
| void PointerHandler::MouseExists(bool exists) {
|
| has_mouse_ = exists;
|
| - base::FundamentalValue val(exists);
|
| + base::Value val(exists);
|
| web_ui()->CallJavascriptFunctionUnsafe("PointerOverlay.showMouseControls",
|
| val);
|
| UpdateTitle();
|
|
|