| Index: ios/chrome/browser/ui/webui/history/browsing_history_handler.cc
|
| diff --git a/ios/chrome/browser/ui/webui/history/browsing_history_handler.cc b/ios/chrome/browser/ui/webui/history/browsing_history_handler.cc
|
| index dbf8d2b6a4873106001dae80742d0f84a03fcd79..41fee7074d504e5e9293822cb578999466de5c1a 100644
|
| --- a/ios/chrome/browser/ui/webui/history/browsing_history_handler.cc
|
| +++ b/ios/chrome/browser/ui/webui/history/browsing_history_handler.cc
|
| @@ -624,8 +624,8 @@ void BrowsingHistoryHandler::ReturnResultsToFrontEnd() {
|
| web_ui()->CallJavascriptFunction("historyResult", results_info_value_,
|
| results_value);
|
| web_ui()->CallJavascriptFunction(
|
| - "showNotification", base::FundamentalValue(has_synced_results_),
|
| - base::FundamentalValue(has_other_forms_of_browsing_history_));
|
| + "showNotification", base::Value(has_synced_results_),
|
| + base::Value(has_other_forms_of_browsing_history_));
|
| results_info_value_.Clear();
|
| query_results_.clear();
|
| web_history_query_results_.clear();
|
| @@ -759,8 +759,8 @@ void BrowsingHistoryHandler::OtherFormsOfBrowsingHistoryQueryComplete(
|
| RecordMetricsForNoticeAboutOtherFormsOfBrowsingHistory(
|
| has_other_forms_of_browsing_history_);
|
| web_ui()->CallJavascriptFunction(
|
| - "showNotification", base::FundamentalValue(has_synced_results_),
|
| - base::FundamentalValue(has_other_forms_of_browsing_history_));
|
| + "showNotification", base::Value(has_synced_results_),
|
| + base::Value(has_other_forms_of_browsing_history_));
|
| }
|
|
|
| void BrowsingHistoryHandler::RemoveComplete() {
|
|
|