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

Unified Diff: chrome/browser/extensions/updater/extension_updater.h

Issue 23591050: Delete the omahaproxy-backed extension blacklist and clear its entries from the (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix memory leak in blacklist test Created 7 years, 3 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/extensions/updater/extension_updater.h
diff --git a/chrome/browser/extensions/updater/extension_updater.h b/chrome/browser/extensions/updater/extension_updater.h
index 3a40f7efc849ec4002cf2fed17525743d9b89ff4..b178aec02bc726fe3673d9571df933889593c6f0 100644
--- a/chrome/browser/extensions/updater/extension_updater.h
+++ b/chrome/browser/extensions/updater/extension_updater.h
@@ -32,7 +32,6 @@ class Profile;
namespace extensions {
-class Blacklist;
class ExtensionDownloader;
class ExtensionPrefs;
class ExtensionUpdaterTest;
@@ -53,8 +52,7 @@ class ExtensionUpdater : public ExtensionDownloaderDelegate,
typedef base::Closure FinishedCallback;
struct CheckParams {
- // Creates a default CheckParams instance that checks for all extensions and
- // the extension blacklist.
+ // Creates a default CheckParams instance that checks for all extensions.
CheckParams();
~CheckParams();
@@ -62,9 +60,6 @@ class ExtensionUpdater : public ExtensionDownloaderDelegate,
// all extensions will be included in the update check.
std::list<std::string> ids;
- // If true, the extension blacklist will also be updated.
- bool check_blacklist;
-
// Normally extension updates get installed only when the extension is idle.
// Setting this to true causes any updates that are found to be installed
// right away.
@@ -82,7 +77,6 @@ class ExtensionUpdater : public ExtensionDownloaderDelegate,
ExtensionPrefs* extension_prefs,
PrefService* prefs,
Profile* profile,
- Blacklist* blacklist,
int frequency_seconds);
virtual ~ExtensionUpdater();
@@ -187,13 +181,6 @@ class ExtensionUpdater : public ExtensionDownloaderDelegate,
const PingResult& ping,
const std::set<int>& request_id) OVERRIDE;
- virtual void OnBlacklistDownloadFinished(
- const std::string& data,
- const std::string& package_hash,
- const std::string& version,
- const PingResult& ping,
- const std::set<int>& request_id) OVERRIDE;
-
virtual bool GetPingDataForExtension(
const std::string& id,
ManifestFetchData::PingData* ping_data) OVERRIDE;
@@ -242,7 +229,6 @@ class ExtensionUpdater : public ExtensionDownloaderDelegate,
ExtensionPrefs* extension_prefs_;
PrefService* prefs_;
Profile* profile_;
- Blacklist* blacklist_;
std::map<int, InProgressCheck> requests_in_progress_;
int next_request_id_;

Powered by Google App Engine
This is Rietveld 408576698