| Index: chrome/browser/profiles/profile_impl.cc
|
| diff --git a/chrome/browser/profiles/profile_impl.cc b/chrome/browser/profiles/profile_impl.cc
|
| index d3f065309aed028fdc81d7fb694b94bb35225f77..86d3fb64228f18270102eed1e18b4670ef4e12f0 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() {
|
|
|