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

Unified Diff: chrome/browser/ui/webui/settings/chromeos/device_keyboard_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_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 856e4e573209ceace70a23f26e96e4e21b916281..72c713444a8a185a89fbae63fb7a729821680a38 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