| Index: chrome/browser/browsing_data/chrome_browsing_data_remover_delegate.h
|
| diff --git a/chrome/browser/browsing_data/chrome_browsing_data_remover_delegate.h b/chrome/browser/browsing_data/chrome_browsing_data_remover_delegate.h
|
| index ef048e89e39b2eeb83ca76e47cd5fbb2b6e72fc3..d76e88461f3169806923a1c769fb40e0f9126e76 100644
|
| --- a/chrome/browser/browsing_data/chrome_browsing_data_remover_delegate.h
|
| +++ b/chrome/browser/browsing_data/chrome_browsing_data_remover_delegate.h
|
| @@ -67,6 +67,7 @@ class ChromeBrowsingDataRemoverDelegate : public BrowsingDataRemoverDelegate
|
| DATA_TYPE_DURABLE_PERMISSION = DATA_TYPE_EMBEDDER_BEGIN << 6,
|
| DATA_TYPE_EXTERNAL_PROTOCOL_DATA = DATA_TYPE_EMBEDDER_BEGIN << 7,
|
| DATA_TYPE_HOSTED_APP_DATA_TEST_ONLY = DATA_TYPE_EMBEDDER_BEGIN << 8,
|
| + DATA_TYPE_CONTENT_SETTINGS = DATA_TYPE_EMBEDDER_BEGIN << 9,
|
|
|
| // Group datatypes.
|
|
|
| @@ -97,7 +98,8 @@ class ChromeBrowsingDataRemoverDelegate : public BrowsingDataRemoverDelegate
|
| // whichever makes sense.
|
| FILTERABLE_DATA_TYPES = DATA_TYPE_SITE_DATA |
|
| BrowsingDataRemover::DATA_TYPE_CACHE |
|
| - BrowsingDataRemover::DATA_TYPE_DOWNLOADS,
|
| + BrowsingDataRemover::DATA_TYPE_DOWNLOADS |
|
| + DATA_TYPE_CONTENT_SETTINGS,
|
|
|
| // Includes all the available remove options. Meant to be used by clients
|
| // that wish to wipe as much data as possible from a Profile, to make it
|
| @@ -108,7 +110,8 @@ class ChromeBrowsingDataRemoverDelegate : public BrowsingDataRemoverDelegate
|
| DATA_TYPE_FORM_DATA |
|
| DATA_TYPE_HISTORY |
|
| DATA_TYPE_PASSWORDS |
|
| - BrowsingDataRemover::DATA_TYPE_MEDIA_LICENSES,
|
| + BrowsingDataRemover::DATA_TYPE_MEDIA_LICENSES |
|
| + DATA_TYPE_CONTENT_SETTINGS,
|
|
|
| // Includes all available remove options. Meant to be used when the Profile
|
| // is scheduled to be deleted, and all possible data should be wiped from
|
|
|