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

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

Issue 532183003: Revert of Enable forced extension updates on NaCl arch mismatch (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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/manifest_fetch_data.h
diff --git a/chrome/browser/extensions/updater/manifest_fetch_data.h b/chrome/browser/extensions/updater/manifest_fetch_data.h
index 36a77c8497f296cfb1c0d7e0b2942cc4431fa0de..a7eab99fd290a0691fc9cfebe6c59b004b7cedf6 100644
--- a/chrome/browser/extensions/updater/manifest_fetch_data.h
+++ b/chrome/browser/extensions/updater/manifest_fetch_data.h
@@ -56,8 +56,7 @@
const std::string& version,
const PingData* ping_data,
const std::string& update_url_data,
- const std::string& install_source,
- bool force_update);
+ const std::string& install_source);
const GURL& base_url() const { return base_url_; }
const GURL& full_url() const { return full_url_; }
@@ -76,9 +75,6 @@
// fetch (in particular this adds all request ids associated with |other|
// to this ManifestFetchData).
void Merge(const ManifestFetchData& other);
-
- // Returns |true| if a given extension was forced to update.
- bool DidForceUpdate(const std::string& extension_id) const;
private:
// The set of extension id's for this ManifestFetchData.
@@ -100,9 +96,6 @@
// one ManifestFetchData.
std::set<int> request_ids_;
- // The set of extension IDs for which this fetch forced a CRX update.
- std::set<std::string> forced_updates_;
-
DISALLOW_COPY_AND_ASSIGN(ManifestFetchData);
};

Powered by Google App Engine
This is Rietveld 408576698