Chromium Code Reviews| Index: chrome/browser/browsing_data/browsing_data_remover.cc |
| diff --git a/chrome/browser/browsing_data/browsing_data_remover.cc b/chrome/browser/browsing_data/browsing_data_remover.cc |
| index 4b4325239d15ea3c876965f2ba3581260327f187..2e5ce0bb06a75dec7a94b0261410ecb0d5493e2f 100644 |
| --- a/chrome/browser/browsing_data/browsing_data_remover.cc |
| +++ b/chrome/browser/browsing_data/browsing_data_remover.cc |
| @@ -32,6 +32,7 @@ |
| #include "chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings.h" |
| #include "chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings_factory.h" |
| #include "chrome/browser/password_manager/password_store_factory.h" |
| +#include "chrome/browser/permissions/permission_decision_auto_blocker.h" |
| #include "chrome/browser/prerender/prerender_manager.h" |
| #include "chrome/browser/prerender/prerender_manager_factory.h" |
| #include "chrome/browser/profiles/profile.h" |
| @@ -791,6 +792,8 @@ void BrowsingDataRemover::RemoveImpl( |
| HostContentSettingsMapFactory::GetForProfile(profile_), |
| CONTENT_SETTINGS_TYPE_SITE_ENGAGEMENT, |
| base::Bind(&ForwardPrimaryPatternCallback, same_pattern_filter)); |
| + |
|
msramek
2016/08/08 17:09:53
Please add a test to BrowsingDataRemoverTest.
dominickn
2016/08/09 08:31:24
Done.
|
| + PermissionDecisionAutoBlocker::RemoveCountsByUrl(profile_, filter); |
|
msramek
2016/08/08 17:09:53
The guarantee that we want to give when the user d
dominickn
2016/08/09 08:31:24
Done.
|
| } |
| if (remove_mask & REMOVE_SITE_USAGE_DATA || remove_mask & REMOVE_HISTORY) { |