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

Unified Diff: chrome/browser/ui/startup/autolaunch_prompt_win.cc

Issue 812823002: Remove dependency of infobars component on the embedder (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compilation on android/win Created 6 years 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/ui/startup/autolaunch_prompt_win.cc
diff --git a/chrome/browser/ui/startup/autolaunch_prompt_win.cc b/chrome/browser/ui/startup/autolaunch_prompt_win.cc
index dc73b29ed2e82b3d1f5e77a32ee551f4e0ebfc27..a0dc67d905f2b282a82e400856989d09fe80959a 100644
--- a/chrome/browser/ui/startup/autolaunch_prompt_win.cc
+++ b/chrome/browser/ui/startup/autolaunch_prompt_win.cc
@@ -71,8 +71,8 @@ class AutolaunchInfoBarDelegate : public ConfirmInfoBarDelegate {
void AutolaunchInfoBarDelegate::Create(InfoBarService* infobar_service,
Profile* profile) {
infobar_service->AddInfoBar(ConfirmInfoBarDelegate::CreateInfoBar(
- scoped_ptr<ConfirmInfoBarDelegate>(
- new AutolaunchInfoBarDelegate(profile))));
+ infobar_service, scoped_ptr<ConfirmInfoBarDelegate>(
+ new AutolaunchInfoBarDelegate(profile))));
}
AutolaunchInfoBarDelegate::AutolaunchInfoBarDelegate(

Powered by Google App Engine
This is Rietveld 408576698