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

Unified Diff: chrome/browser/ui/webui/settings/chromeos/device_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/settings/chromeos/device_pointer_handler.cc
diff --git a/chrome/browser/ui/webui/settings/chromeos/device_pointer_handler.cc b/chrome/browser/ui/webui/settings/chromeos/device_pointer_handler.cc
index 6363c7461af8e508c07716942201930cb05ed51d..a82f5794e473c3147dafdf34bdb2601513137fe0 100644
--- a/chrome/browser/ui/webui/settings/chromeos/device_pointer_handler.cc
+++ b/chrome/browser/ui/webui/settings/chromeos/device_pointer_handler.cc
@@ -38,13 +38,13 @@ void PointerHandler::OnJavascriptDisallowed() {
void PointerHandler::TouchpadExists(bool exists) {
CallJavascriptFunction("cr.webUIListenerCallback",
base::StringValue("has-touchpad-changed"),
- base::FundamentalValue(exists));
+ base::Value(exists));
}
void PointerHandler::MouseExists(bool exists) {
CallJavascriptFunction("cr.webUIListenerCallback",
base::StringValue("has-mouse-changed"),
- base::FundamentalValue(exists));
+ base::Value(exists));
}
void PointerHandler::HandleInitialize(const base::ListValue* args) {

Powered by Google App Engine
This is Rietveld 408576698