OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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/autocheckout_infobar_delegate.h" | 5 #include "chrome/browser/autofill/autocheckout_infobar_delegate.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/utf_string_conversions.h" | 8 #include "base/utf_string_conversions.h" |
9 #include "chrome/browser/api/infobars/infobar_service.h" | 9 #include "chrome/browser/api/infobars/infobar_service.h" |
10 #include "chrome/browser/autofill/autocheckout_manager.h" | 10 #include "chrome/browser/autofill/autocheckout_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 namespace autofill { |
| 21 |
20 // static | 22 // static |
21 void AutocheckoutInfoBarDelegate::Create( | 23 void AutocheckoutInfoBarDelegate::Create( |
22 const AutofillMetrics& metric_logger, | 24 const AutofillMetrics& metric_logger, |
23 const GURL& source_url, | 25 const GURL& source_url, |
24 const content::SSLStatus& ssl_status, | 26 const content::SSLStatus& ssl_status, |
25 AutocheckoutManager* autocheckout_manager, | 27 AutocheckoutManager* autocheckout_manager, |
26 InfoBarService* infobar_service) { | 28 InfoBarService* infobar_service) { |
27 infobar_service->AddInfoBar(scoped_ptr<InfoBarDelegate>( | 29 infobar_service->AddInfoBar(scoped_ptr<InfoBarDelegate>( |
28 new AutocheckoutInfoBarDelegate(metric_logger, source_url, ssl_status, | 30 new AutocheckoutInfoBarDelegate(metric_logger, source_url, ssl_status, |
29 autocheckout_manager, infobar_service))); | 31 autocheckout_manager, infobar_service))); |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 owner()->GetWebContents()->GetDelegate()->OpenURLFromTab( | 111 owner()->GetWebContents()->GetDelegate()->OpenURLFromTab( |
110 owner()->GetWebContents(), | 112 owner()->GetWebContents(), |
111 content::OpenURLParams(GURL(chrome::kAutofillHelpURL), | 113 content::OpenURLParams(GURL(chrome::kAutofillHelpURL), |
112 content::Referrer(), | 114 content::Referrer(), |
113 NEW_FOREGROUND_TAB, | 115 NEW_FOREGROUND_TAB, |
114 content::PAGE_TRANSITION_LINK, | 116 content::PAGE_TRANSITION_LINK, |
115 false)); | 117 false)); |
116 return false; | 118 return false; |
117 } | 119 } |
118 | 120 |
| 121 } // namespace autofill |
OLD | NEW |