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

Unified Diff: chrome/browser/ui/webui/settings/chromeos/date_time_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/date_time_handler.cc
diff --git a/chrome/browser/ui/webui/settings/chromeos/date_time_handler.cc b/chrome/browser/ui/webui/settings/chromeos/date_time_handler.cc
index b3290cab5e21eefcc4f6d49e5fcf3b85d42ba72c..d98fb5eba9effc17d5f0f168f95800439d4a0a6b 100644
--- a/chrome/browser/ui/webui/settings/chromeos/date_time_handler.cc
+++ b/chrome/browser/ui/webui/settings/chromeos/date_time_handler.cc
@@ -172,14 +172,14 @@ void DateTimeHandler::NotifyTimezoneAutomaticDetectionPolicy() {
CallJavascriptFunction("cr.webUIListenerCallback",
base::StringValue("time-zone-auto-detect-policy"),
- base::FundamentalValue(managed),
- base::FundamentalValue(force_enabled));
+ base::Value(managed),
+ base::Value(force_enabled));
}
void DateTimeHandler::SystemClockCanSetTimeChanged(bool can_set_time) {
CallJavascriptFunction("cr.webUIListenerCallback",
base::StringValue("can-set-date-time-changed"),
- base::FundamentalValue(can_set_time));
+ base::Value(can_set_time));
}
} // namespace settings

Powered by Google App Engine
This is Rietveld 408576698