Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(665)

Unified Diff: chrome/browser/browsing_data/browsing_data_remover.h

Issue 2075023002: UI Changes to support clearing EME/CDM data (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Media licenses everywhere Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/browsing_data/browsing_data_remover.h
diff --git a/chrome/browser/browsing_data/browsing_data_remover.h b/chrome/browser/browsing_data/browsing_data_remover.h
index 4605e4a822ef0e653f72b9ff35c2fc67fbf50864..6995ccad3500ff113fd806811ea52c7fb53dc20a 100644
--- a/chrome/browser/browsing_data/browsing_data_remover.h
+++ b/chrome/browser/browsing_data/browsing_data_remover.h
@@ -104,7 +104,7 @@ class BrowsingDataRemover : public KeyedService
REMOVE_PASSWORDS = 1 << 10,
REMOVE_WEBSQL = 1 << 11,
REMOVE_CHANNEL_IDS = 1 << 12,
- REMOVE_CONTENT_LICENSES = 1 << 13,
+ REMOVE_MEDIA_LICENSES = 1 << 13,
REMOVE_SERVICE_WORKERS = 1 << 14,
REMOVE_SITE_USAGE_DATA = 1 << 15,
// REMOVE_NOCHECKS intentionally does not check if the Profile's prohibited
@@ -144,7 +144,7 @@ class BrowsingDataRemover : public KeyedService
REMOVE_FORM_DATA |
REMOVE_HISTORY |
REMOVE_PASSWORDS |
- REMOVE_CONTENT_LICENSES,
+ REMOVE_MEDIA_LICENSES,
// 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
@@ -325,8 +325,8 @@ class BrowsingDataRemover : public KeyedService
void OnWaitableEventSignaled(base::WaitableEvent* waitable_event);
// PepperFlashSettingsManager::Client implementation.
- void OnDeauthorizeContentLicensesCompleted(uint32_t request_id,
- bool success) override;
+ void OnDeauthorizeFlashContentLicensesCompleted(uint32_t request_id,
+ bool success) override;
#endif
#if defined (OS_CHROMEOS)
@@ -461,13 +461,13 @@ class BrowsingDataRemover : public KeyedService
std::unique_ptr<PepperFlashSettingsManager> pepper_flash_settings_manager_;
#endif
- uint32_t deauthorize_content_licenses_request_id_ = 0;
+ uint32_t deauthorize_flash_content_licenses_request_id_ = 0;
// True if we're waiting for various data to be deleted.
// These may only be accessed from UI thread in order to avoid races!
bool waiting_for_clear_autofill_origin_urls_ = false;
bool waiting_for_clear_cache_ = false;
bool waiting_for_clear_channel_ids_ = false;
- bool waiting_for_clear_content_licenses_ = false;
+ bool waiting_for_clear_flash_content_licenses_ = false;
// Non-zero if waiting for cookies to be cleared.
int waiting_for_clear_cookies_count_ = 0;
bool waiting_for_clear_domain_reliability_monitor_ = false;

Powered by Google App Engine
This is Rietveld 408576698