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

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: missed updating a method call 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
Index: chrome/browser/extensions/crx_installer.h
diff --git a/chrome/browser/extensions/crx_installer.h b/chrome/browser/extensions/crx_installer.h
index 5426b1ac9871f3b18b03204ace199018d79622b3..c787a0b22ef03e2b1c8d6f281472c37e28f36c5d 100644
--- a/chrome/browser/extensions/crx_installer.h
+++ b/chrome/browser/extensions/crx_installer.h
@@ -94,11 +94,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; }
@@ -173,14 +168,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_;

Powered by Google App Engine
This is Rietveld 408576698