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

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

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.cc
diff --git a/chrome/browser/extensions/crx_installer.cc b/chrome/browser/extensions/crx_installer.cc
index d90bbbd9eb3232944418d1494f88a34cdbec0f65..1db929dd489d20d0f328e7dd2ce75ca67ede33b8 100644
--- a/chrome/browser/extensions/crx_installer.cc
+++ b/chrome/browser/extensions/crx_installer.cc
@@ -81,7 +81,6 @@ CrxInstaller::CrxInstaller(const FilePath& install_directory,
: install_directory_(install_directory),
install_source_(Extension::INTERNAL),
delete_source_(false),
- allow_privilege_increase_(false),
is_gallery_install_(false),
create_app_shortcut_(false),
frontend_(frontend),
@@ -409,7 +408,7 @@ void CrxInstaller::ReportSuccessFromUIThread() {
// Tell the frontend about the installation and hand off ownership of
// extension_ to it.
- frontend_->OnExtensionInstalled(extension_, allow_privilege_increase_);
+ frontend_->OnExtensionInstalled(extension_);
extension_ = NULL;
// We're done. We don't post any more tasks to ourselves so we are deleted

Powered by Google App Engine
This is Rietveld 408576698