| 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 c9dae36a36450cb4b280572cf7683ba59b4fc8a9..171819e89dcb79b5f26bb2997fbc44c0497821f5 100644
|
| --- a/chrome/browser/browsing_data/browsing_data_remover.cc
|
| +++ b/chrome/browser/browsing_data/browsing_data_remover.cc
|
| @@ -488,6 +488,7 @@ void BrowsingDataRemover::RemoveImpl(int remove_mask,
|
| }
|
| }
|
|
|
| +#if defined(ENABLE_PPAPI)
|
| if (remove_mask & REMOVE_CONTENT_LICENSES) {
|
| content::RecordAction(
|
| UserMetricsAction("ClearBrowsingData_ContentLicenses"));
|
| @@ -500,6 +501,7 @@ void BrowsingDataRemover::RemoveImpl(int remove_mask,
|
| deauthorize_content_licenses_request_id_ =
|
| pepper_flash_settings_manager_->DeauthorizeContentLicenses();
|
| }
|
| +#endif
|
|
|
| // Always wipe accumulated network related data (TransportSecurityState and
|
| // HttpServerPropertiesManager data).
|
| @@ -944,6 +946,7 @@ void BrowsingDataRemover::OnWaitableEventSignaled(
|
| NotifyAndDeleteIfDone();
|
| }
|
|
|
| +#if defined(ENABLE_PPAPI)
|
| void BrowsingDataRemover::OnDeauthorizeContentLicensesCompleted(
|
| uint32 request_id,
|
| bool /* success */) {
|
| @@ -953,6 +956,7 @@ void BrowsingDataRemover::OnDeauthorizeContentLicensesCompleted(
|
| waiting_for_clear_content_licenses_ = false;
|
| NotifyAndDeleteIfDone();
|
| }
|
| +#endif
|
|
|
| void BrowsingDataRemover::OnClearedCookies(int num_deleted) {
|
| if (!BrowserThread::CurrentlyOn(BrowserThread::UI)) {
|
|
|