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

Side by Side Diff: chrome/browser/autofill/autofill_cc_infobar_delegate.cc

Issue 11644059: Change infobar creation to use a public static Create() method on the infobar delegate classes. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/autofill/autofill_cc_infobar_delegate.h" 5 #include "chrome/browser/autofill/autofill_cc_infobar_delegate.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "chrome/browser/api/infobars/infobar_service.h" 8 #include "chrome/browser/api/infobars/infobar_service.h"
9 #include "chrome/browser/autofill/credit_card.h" 9 #include "chrome/browser/autofill/credit_card.h"
10 #include "chrome/browser/autofill/personal_data_manager.h" 10 #include "chrome/browser/autofill/personal_data_manager.h"
11 #include "chrome/common/url_constants.h" 11 #include "chrome/common/url_constants.h"
12 #include "content/public/browser/page_navigator.h" 12 #include "content/public/browser/page_navigator.h"
13 #include "content/public/browser/web_contents.h" 13 #include "content/public/browser/web_contents.h"
14 #include "content/public/browser/web_contents_delegate.h" 14 #include "content/public/browser/web_contents_delegate.h"
15 #include "grit/generated_resources.h" 15 #include "grit/generated_resources.h"
16 #include "grit/theme_resources.h" 16 #include "grit/theme_resources.h"
17 #include "ui/base/l10n/l10n_util.h" 17 #include "ui/base/l10n/l10n_util.h"
18 #include "ui/base/resource/resource_bundle.h" 18 #include "ui/base/resource/resource_bundle.h"
19 19
20 // static
21 void AutofillCCInfoBarDelegate::Create(
22 InfoBarService* infobar_service,
23 const CreditCard* credit_card,
24 PersonalDataManager* personal_data,
25 const AutofillMetrics* metric_logger) {
26 infobar_service->AddInfoBar(scoped_ptr<InfoBarDelegate>(
27 new AutofillCCInfoBarDelegate(infobar_service, credit_card, personal_data,
28 metric_logger)));
29 }
30
20 AutofillCCInfoBarDelegate::AutofillCCInfoBarDelegate( 31 AutofillCCInfoBarDelegate::AutofillCCInfoBarDelegate(
21 InfoBarService* infobar_service, 32 InfoBarService* infobar_service,
22 const CreditCard* credit_card, 33 const CreditCard* credit_card,
23 PersonalDataManager* personal_data, 34 PersonalDataManager* personal_data,
24 const AutofillMetrics* metric_logger) 35 const AutofillMetrics* metric_logger)
25 : ConfirmInfoBarDelegate(infobar_service), 36 : ConfirmInfoBarDelegate(infobar_service),
26 credit_card_(credit_card), 37 credit_card_(credit_card),
27 personal_data_(personal_data), 38 personal_data_(personal_data),
28 metric_logger_(metric_logger), 39 metric_logger_(metric_logger),
29 had_user_interaction_(false) { 40 had_user_interaction_(false) {
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 bool AutofillCCInfoBarDelegate::LinkClicked(WindowOpenDisposition disposition) { 102 bool AutofillCCInfoBarDelegate::LinkClicked(WindowOpenDisposition disposition) {
92 owner()->GetWebContents()->GetDelegate()->OpenURLFromTab( 103 owner()->GetWebContents()->GetDelegate()->OpenURLFromTab(
93 owner()->GetWebContents(), 104 owner()->GetWebContents(),
94 content::OpenURLParams(GURL(chrome::kAutofillHelpURL), 105 content::OpenURLParams(GURL(chrome::kAutofillHelpURL),
95 content::Referrer(), 106 content::Referrer(),
96 NEW_FOREGROUND_TAB, 107 NEW_FOREGROUND_TAB,
97 content::PAGE_TRANSITION_LINK, 108 content::PAGE_TRANSITION_LINK,
98 false)); 109 false));
99 return false; 110 return false;
100 } 111 }
OLDNEW
« no previous file with comments | « chrome/browser/autofill/autofill_cc_infobar_delegate.h ('k') | chrome/browser/autofill/autofill_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698