Index: chrome/browser/ui/webui/settings/settings_clear_browsing_data_handler.cc |
diff --git a/chrome/browser/ui/webui/settings/settings_clear_browsing_data_handler.cc b/chrome/browser/ui/webui/settings/settings_clear_browsing_data_handler.cc |
index 42662c574673d035a9282b8e7ddd7f167bfc6a26..b5a014ce17b338385c5a9383c5050c41938b2194 100644 |
--- a/chrome/browser/ui/webui/settings/settings_clear_browsing_data_handler.cc |
+++ b/chrome/browser/ui/webui/settings/settings_clear_browsing_data_handler.cc |
@@ -18,8 +18,8 @@ |
#include "chrome/browser/sync/profile_sync_service_factory.h" |
#include "chrome/common/channel_info.h" |
#include "chrome/common/pref_names.h" |
+#include "components/browsing_data/core/history_notice_utils.h" |
#include "components/browsing_data/core/pref_names.h" |
-#include "components/browsing_data_ui/history_notice_utils.h" |
#include "components/prefs/pref_service.h" |
#include "content/public/browser/web_ui.h" |
@@ -284,7 +284,7 @@ void ClearBrowsingDataHandler::OnStateChanged() { |
} |
void ClearBrowsingDataHandler::RefreshHistoryNotice() { |
- browsing_data_ui::ShouldShowNoticeAboutOtherFormsOfBrowsingHistory( |
+ browsing_data::ShouldShowNoticeAboutOtherFormsOfBrowsingHistory( |
sync_service_, |
WebHistoryServiceFactory::GetForProfile(profile_), |
base::Bind(&ClearBrowsingDataHandler::UpdateHistoryNotice, |
@@ -297,7 +297,7 @@ void ClearBrowsingDataHandler::RefreshHistoryNotice() { |
browsing_data::prefs::kClearBrowsingDataHistoryNoticeShownTimes); |
if (notice_shown_times < kMaxTimesHistoryNoticeShown) { |
- browsing_data_ui::ShouldPopupDialogAboutOtherFormsOfBrowsingHistory( |
+ browsing_data::ShouldPopupDialogAboutOtherFormsOfBrowsingHistory( |
sync_service_, |
WebHistoryServiceFactory::GetForProfile(profile_), |
chrome::GetChannel(), |