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

Unified Diff: chrome/browser/ui/webui/options/chromeos/options_stylus_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/options_stylus_handler.cc
diff --git a/chrome/browser/ui/webui/options/chromeos/options_stylus_handler.cc b/chrome/browser/ui/webui/options/chromeos/options_stylus_handler.cc
index 725a703b586abfbb000636be114cec1a7feaf148..2f9a5f3bbb8c71ab8c045ae73cefbd51995916e4 100644
--- a/chrome/browser/ui/webui/options/chromeos/options_stylus_handler.cc
+++ b/chrome/browser/ui/webui/options/chromeos/options_stylus_handler.cc
@@ -99,7 +99,7 @@ void OptionsStylusHandler::SendHasStylus() {
web_ui()->CallJavascriptFunctionUnsafe(
"BrowserOptions.setStylusInputStatus",
- base::FundamentalValue(ash::palette_utils::HasStylusInput()));
+ base::Value(ash::palette_utils::HasStylusInput()));
}
void OptionsStylusHandler::UpdateNoteTakingApps() {
@@ -127,9 +127,9 @@ void OptionsStylusHandler::UpdateNoteTakingApps() {
}
}
- web_ui()->CallJavascriptFunctionUnsafe(
- "StylusOverlay.updateNoteTakingApps", apps_list,
- base::FundamentalValue(waiting_for_android));
+ web_ui()->CallJavascriptFunctionUnsafe("StylusOverlay.updateNoteTakingApps",
+ apps_list,
+ base::Value(waiting_for_android));
}
void OptionsStylusHandler::SetPreferredNoteTakingApp(

Powered by Google App Engine
This is Rietveld 408576698