| Index: chrome/browser/ui/webui/chromeos/emulator/device_emulator_message_handler.cc
|
| diff --git a/chrome/browser/ui/webui/chromeos/emulator/device_emulator_message_handler.cc b/chrome/browser/ui/webui/chromeos/emulator/device_emulator_message_handler.cc
|
| index 42937e44491d31227f2a530ba0726dd5b4ff601e..a1426f0f50251e03eb1fa0eaca26d48e8ef9a2e3 100644
|
| --- a/chrome/browser/ui/webui/chromeos/emulator/device_emulator_message_handler.cc
|
| +++ b/chrome/browser/ui/webui/chromeos/emulator/device_emulator_message_handler.cc
|
| @@ -630,14 +630,14 @@ void DeviceEmulatorMessageHandler::TouchpadExists(bool exists) {
|
| if (!IsJavascriptAllowed())
|
| return;
|
| web_ui()->CallJavascriptFunctionUnsafe(kTouchpadExistsCallback,
|
| - base::FundamentalValue(exists));
|
| + base::Value(exists));
|
| }
|
|
|
| void DeviceEmulatorMessageHandler::MouseExists(bool exists) {
|
| if (!IsJavascriptAllowed())
|
| return;
|
| web_ui()->CallJavascriptFunctionUnsafe(kMouseExistsCallback,
|
| - base::FundamentalValue(exists));
|
| + base::Value(exists));
|
| }
|
|
|
| } // namespace chromeos
|
|
|