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

Unified Diff: chrome/browser/ui/webui/browsing_history_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/browsing_history_handler.cc
diff --git a/chrome/browser/ui/webui/browsing_history_handler.cc b/chrome/browser/ui/webui/browsing_history_handler.cc
index 62eb4234444648137b7074a2fd63b35c72c28781..587a5382e5bb1798d87e2e74cf0bde21d76353ba 100644
--- a/chrome/browser/ui/webui/browsing_history_handler.cc
+++ b/chrome/browser/ui/webui/browsing_history_handler.cc
@@ -552,7 +552,7 @@ void BrowsingHistoryHandler::HistoryDeleted() {
void BrowsingHistoryHandler::HasOtherFormsOfBrowsingHistory(
bool has_other_forms,
bool has_synced_results) {
- web_ui()->CallJavascriptFunctionUnsafe(
- "showNotification", base::FundamentalValue(has_synced_results),
- base::FundamentalValue(has_other_forms));
+ web_ui()->CallJavascriptFunctionUnsafe("showNotification",
+ base::Value(has_synced_results),
+ base::Value(has_other_forms));
}
« no previous file with comments | « chrome/browser/ui/webui/bidi_checker_web_ui_test.cc ('k') | chrome/browser/ui/webui/chromeos/cryptohome_web_ui_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698