Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1058)

Unified Diff: chrome/browser/ui/webui/options/chromeos/pointer_handler.cc

Issue 2666093002: Remove base::FundamentalValue (Closed)
Patch Set: Rebase Created 3 years, 10 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
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();

Powered by Google App Engine
This is Rietveld 408576698