| 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 fed036e5cd0acaf2e71b3400dd44f125ff50e122..cdc559a59b1971231239f75403017cc39387d5a7 100644
|
| --- a/chrome/browser/browsing_data/browsing_data_remover.cc
|
| +++ b/chrome/browser/browsing_data/browsing_data_remover.cc
|
| @@ -59,6 +59,7 @@
|
| #include "content/public/browser/notification_service.h"
|
| #include "content/public/browser/plugin_data_remover.h"
|
| #include "content/public/browser/session_storage_usage_info.h"
|
| +#include "content/public/browser/ssl_host_state_decisions.h"
|
| #include "content/public/browser/storage_partition.h"
|
| #include "content/public/browser/user_metrics.h"
|
| #include "net/base/net_errors.h"
|
| @@ -406,6 +407,11 @@ void BrowsingDataRemover::RemoveImpl(int remove_mask,
|
| base::Bind(&BrowsingDataRemover::OnClearedWebRtcLogs,
|
| base::Unretained(this)));
|
| #endif
|
| +
|
| + // The SSL Host State that tracks SSL interstitial "proceed" decisions may
|
| + // include origins that the user has visited, so it must be cleared.
|
| + if (profile_->GetSSLHostStateDecisions())
|
| + profile_->GetSSLHostStateDecisions()->Clear();
|
| }
|
|
|
| if ((remove_mask & REMOVE_DOWNLOADS) && may_delete_history) {
|
|
|