summaryrefslogtreecommitdiffstats
path: root/chrome/common/extensions/extension.h
diff options
context:
space:
mode:
authorphajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-01-20 09:21:50 +0000
committerphajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-01-20 09:21:50 +0000
commit8c6335d3d176a06d41252fd4a4c5335fa2113aa6 (patch)
treea10ff8fc3f25db04c9426c009feb8c92790e6c06 /chrome/common/extensions/extension.h
parent1e52ae9f050e47ec670e0b3ad931652709a59ae7 (diff)
downloadchromium_src-8c6335d3d176a06d41252fd4a4c5335fa2113aa6.zip
chromium_src-8c6335d3d176a06d41252fd4a4c5335fa2113aa6.tar.gz
chromium_src-8c6335d3d176a06d41252fd4a4c5335fa2113aa6.tar.bz2
Drop the code allowing privacy blacklists to be shipped in extensions.
The plan is to implement it in a different way. TEST=Covered by unit_tests. BUG=21541 Review URL: http://codereview.chromium.org/552025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@36626 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/extensions/extension.h')
-rw-r--r--chrome/common/extensions/extension.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/chrome/common/extensions/extension.h b/chrome/common/extensions/extension.h
index 03eaee3..8175948 100644
--- a/chrome/common/extensions/extension.h
+++ b/chrome/common/extensions/extension.h
@@ -78,10 +78,6 @@ class Extension {
static const char* kPermissionNames[];
static const size_t kNumPermissions;
- struct PrivacyBlacklistInfo {
- FilePath path; // Path to the plain-text blacklist.
- };
-
// An NPAPI plugin included in the extension.
struct PluginInfo {
FilePath path; // Path to the plugin.
@@ -208,9 +204,6 @@ class Extension {
const UserScriptList& content_scripts() const { return content_scripts_; }
ExtensionAction* page_action() const { return page_action_.get(); }
ExtensionAction* browser_action() const { return browser_action_.get(); }
- const std::vector<PrivacyBlacklistInfo>& privacy_blacklists() const {
- return privacy_blacklists_;
- }
const std::vector<PluginInfo>& plugins() const { return plugins_; }
const GURL& background_url() const { return background_url_; }
const GURL& options_url() const { return options_url_; }
@@ -363,9 +356,6 @@ class Extension {
// The extension's browser action, if any.
scoped_ptr<ExtensionAction> browser_action_;
- // Optional list of privacy blacklistrom.
- std::vector<PrivacyBlacklistInfo> privacy_blacklists_;
-
// Optional list of NPAPI plugins and associated properties.
std::vector<PluginInfo> plugins_;