From 59eca0ff20ddd208f96151dc016a18d6127e8a51 Mon Sep 17 00:00:00 2001 From: "mkwst@chromium.org" Date: Tue, 13 Dec 2011 19:16:39 +0000 Subject: Renaming REMOVE_LSO_DATA to REMOVE_PLUGIN_DATA Removing plugin data is different to removing only LSO data. Moreover, we call out to content::PluginDataRemover to do the work: we should have an external name here that's consistent. This CL's tests depend on http://codereview.chromium.org/8907015/ landing. It shouldn't be landed until that patch is approved. BUG=107355 TEST= Review URL: http://codereview.chromium.org/8907018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114240 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/browsing_data_remover.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'chrome/browser/browsing_data_remover.h') diff --git a/chrome/browser/browsing_data_remover.h b/chrome/browser/browsing_data_remover.h index adb9b38..0257815 100644 --- a/chrome/browser/browsing_data_remover.h +++ b/chrome/browser/browsing_data_remover.h @@ -66,15 +66,15 @@ class BrowsingDataRemover : public content::NotificationObserver, REMOVE_HISTORY = 1 << 6, REMOVE_INDEXEDDB = 1 << 7, REMOVE_LOCAL_STORAGE = 1 << 8, - REMOVE_LSO_DATA = 1 << 9, + REMOVE_PLUGIN_DATA = 1 << 9, REMOVE_PASSWORDS = 1 << 10, REMOVE_WEBSQL = 1 << 11, // "Site data" includes cookies, appcache, file systems, indexedDBs, local - // storage, webSQL, and LSO data. + // storage, webSQL, and plugin data. REMOVE_SITE_DATA = REMOVE_APPCACHE | REMOVE_COOKIES | REMOVE_FILE_SYSTEMS | REMOVE_INDEXEDDB | REMOVE_LOCAL_STORAGE | - REMOVE_LSO_DATA | REMOVE_WEBSQL + REMOVE_PLUGIN_DATA | REMOVE_WEBSQL }; // When BrowsingDataRemover successfully removes data, a notification of type @@ -217,7 +217,7 @@ class BrowsingDataRemover : public content::NotificationObserver, !waiting_for_clear_history_ && !waiting_for_clear_quota_managed_data_ && !waiting_for_clear_networking_history_ && - !waiting_for_clear_lso_data_; + !waiting_for_clear_plugin_data_; } // Setter for removing_; DCHECKs that we can only start removing if we're not @@ -265,7 +265,7 @@ class BrowsingDataRemover : public content::NotificationObserver, bool waiting_for_clear_networking_history_; bool waiting_for_clear_cookies_; bool waiting_for_clear_cache_; - bool waiting_for_clear_lso_data_; + bool waiting_for_clear_plugin_data_; // Tracking how many origins need to be deleted, and whether we're finished // gathering origins. -- cgit v1.1