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

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

Issue 508513002: Remove implicit conversions from scoped_refptr to T* in chrome/browser/extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Two more Created 6 years, 4 months 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/external_install_error.cc
diff --git a/chrome/browser/extensions/external_install_error.cc b/chrome/browser/extensions/external_install_error.cc
index 0ed176cee4ae1d3f0a588c460a670a6365e3dbd0..c01e8da854fac0db1f97bc682bc7eb487222a13e 100644
--- a/chrome/browser/extensions/external_install_error.cc
+++ b/chrome/browser/extensions/external_install_error.cc
@@ -369,7 +369,7 @@ void ExternalInstallError::OnDialogReady(
prompt_ = prompt;
if (alert_type_ == BUBBLE_ALERT) {
- global_error_.reset(new ExternalInstallBubbleAlert(this, prompt_));
+ global_error_.reset(new ExternalInstallBubbleAlert(this, prompt_.get()));
error_service_->AddGlobalError(global_error_.get());
Browser* browser =

Powered by Google App Engine
This is Rietveld 408576698