| 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));
|
| }
|
|
|