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

Unified Diff: chrome/browser/ui/webui/settings/chromeos/device_keyboard_handler.cc

Issue 2476493003: Remove FundamentalValue
Patch Set: Fix Created 4 years, 1 month 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_keyboard_handler.cc
diff --git a/chrome/browser/ui/webui/settings/chromeos/device_keyboard_handler.cc b/chrome/browser/ui/webui/settings/chromeos/device_keyboard_handler.cc
index 3fe6e66e63d7634c9b9a62aaf3ab929675d74e4b..06403f099578db76faa82c4f8d49f29063fbba61 100644
--- a/chrome/browser/ui/webui/settings/chromeos/device_keyboard_handler.cc
+++ b/chrome/browser/ui/webui/settings/chromeos/device_keyboard_handler.cc
@@ -71,8 +71,8 @@ void KeyboardHandler::HandleShowKeyboardShortcutsOverlay(
}
void KeyboardHandler::UpdateShowKeys() {
- const base::FundamentalValue has_caps_lock(HasExternalKeyboard());
- const base::FundamentalValue has_diamond_key(
+ const base::Value has_caps_lock(HasExternalKeyboard());
+ const base::Value has_diamond_key(
base::CommandLine::ForCurrentProcess()->HasSwitch(
chromeos::switches::kHasChromeOSDiamondKey));
CallJavascriptFunction("cr.webUIListenerCallback",

Powered by Google App Engine
This is Rietveld 408576698