Index: chrome/browser/profiles/profile_impl.cc |
diff --git a/chrome/browser/profiles/profile_impl.cc b/chrome/browser/profiles/profile_impl.cc |
index 0e6340d54882e17307f2bf2a0251ccfcbf8fdbcb..40c36d422384642a7b1534c91aac7d8135e812b1 100644 |
--- a/chrome/browser/profiles/profile_impl.cc |
+++ b/chrome/browser/profiles/profile_impl.cc |
@@ -36,6 +36,8 @@ |
#include "chrome/browser/background_sync/background_sync_controller_impl.h" |
#include "chrome/browser/bookmarks/bookmark_model_factory.h" |
#include "chrome/browser/browser_process.h" |
+#include "chrome/browser/browsing_data/chrome_browsing_data_remover_delegate.h" |
+#include "chrome/browser/browsing_data/chrome_browsing_data_remover_delegate_factory.h" |
#include "chrome/browser/chrome_notification_types.h" |
#include "chrome/browser/content_settings/cookie_settings_factory.h" |
#include "chrome/browser/content_settings/host_content_settings_map_factory.h" |
@@ -1028,6 +1030,11 @@ content::SSLHostStateDelegate* ProfileImpl::GetSSLHostStateDelegate() { |
return ChromeSSLHostStateDelegateFactory::GetForProfile(this); |
} |
+content::BrowsingDataRemoverDelegate* |
+ProfileImpl::GetBrowsingDataRemoverDelegate() { |
+ return ChromeBrowsingDataRemoverDelegateFactory::GetForProfile(this); |
+} |
+ |
// TODO(mlamouri): we should all these BrowserContext implementation to Profile |
// instead of repeating them inside all Profile implementations. |
content::PermissionManager* ProfileImpl::GetPermissionManager() { |