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

Unified Diff: extensions/browser/runtime_data.cc

Issue 2442213003: Remove dead extensions tracking code. (Closed)
Patch Set: rebase Created 4 years, 1 month 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
« no previous file with comments | « extensions/browser/runtime_data.h ('k') | extensions/browser/runtime_data_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/runtime_data.cc
diff --git a/extensions/browser/runtime_data.cc b/extensions/browser/runtime_data.cc
index 3cee8466d5983d2da0dc9c733ec4d60c282ff309..e96cb132e88563f133e0a6be29cf591f178efb1f 100644
--- a/extensions/browser/runtime_data.cc
+++ b/extensions/browser/runtime_data.cc
@@ -38,15 +38,6 @@ void RuntimeData::SetBeingUpgraded(const std::string& extension_id,
SetFlag(extension_id, BEING_UPGRADED, value);
}
-bool RuntimeData::HasUsedWebRequest(const std::string& extension_id) const {
- return HasFlag(extension_id, HAS_USED_WEBREQUEST);
-}
-
-void RuntimeData::SetHasUsedWebRequest(const std::string& extension_id,
- bool value) {
- SetFlag(extension_id, HAS_USED_WEBREQUEST, value);
-}
-
bool RuntimeData::HasExtensionForTesting(
const std::string& extension_id) const {
return extension_flags_.find(extension_id) != extension_flags_.end();
« no previous file with comments | « extensions/browser/runtime_data.h ('k') | extensions/browser/runtime_data_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698