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

Unified Diff: chrome/browser/extensions/crx_installer.h

Issue 4687005: Track permissions granted to extensions in prefs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix mac test failure Created 10 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 | « chrome/browser/download/download_util.cc ('k') | chrome/browser/extensions/crx_installer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/crx_installer.h
diff --git a/chrome/browser/extensions/crx_installer.h b/chrome/browser/extensions/crx_installer.h
index 26bbbd83312c5dfb1063912d1df41eba130a766d..c22a4a9eebbd321799d2a4cc60401f12014ea5e9 100644
--- a/chrome/browser/extensions/crx_installer.h
+++ b/chrome/browser/extensions/crx_installer.h
@@ -96,11 +96,6 @@ class CrxInstaller
bool delete_source() const { return delete_source_; }
void set_delete_source(bool val) { delete_source_ = val; }
- bool allow_privilege_increase() const { return allow_privilege_increase_; }
- void set_allow_privilege_increase(bool val) {
- allow_privilege_increase_ = val;
- }
-
bool allow_silent_install() const { return allow_silent_install_; }
void set_allow_silent_install(bool val) { allow_silent_install_ = val; }
@@ -178,14 +173,6 @@ class CrxInstaller
// to false.
bool delete_source_;
- // Whether privileges should be allowed to silently increaes from any
- // previously installed version of the extension. This is used for things
- // like external extensions, where extensions come with third-party software
- // or are distributed by the network administrator. There is no UI shown
- // for these extensions, so there shouldn't be UI for privilege increase,
- // either. Defaults to false.
- bool allow_privilege_increase_;
-
// Whether the install originated from the gallery.
bool is_gallery_install_;
« no previous file with comments | « chrome/browser/download/download_util.cc ('k') | chrome/browser/extensions/crx_installer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698