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
3 // found in the LICENSE file.
5 #include "chrome/browser/custom_handlers/register_protocol_handler_infobar_delegate.h"
7 #include "base/strings/utf_string_conversions.h"
8 #include "chrome/browser/custom_handlers/protocol_handler_registry.h"
9 #include "chrome/browser/infobars/infobar.h"
10 #include "chrome/browser/infobars/infobar_service.h"
11 #include "chrome/common/url_constants.h"
12 #include "content/public/browser/user_metrics.h"
13 #include "content/public/browser/web_contents.h"
14 #include "grit/generated_resources.h"
15 #include "ui/base/l10n/l10n_util.h"
18 void RegisterProtocolHandlerInfoBarDelegate::Create(
19 InfoBarService
* infobar_service
,
20 ProtocolHandlerRegistry
* registry
,
21 const ProtocolHandler
& handler
) {
22 content::RecordAction(
23 base::UserMetricsAction("RegisterProtocolHandler.InfoBar_Shown"));
25 scoped_ptr
<InfoBar
> infobar(ConfirmInfoBarDelegate::CreateInfoBar(
26 scoped_ptr
<ConfirmInfoBarDelegate
>(
27 new RegisterProtocolHandlerInfoBarDelegate(registry
, handler
))));
29 for (size_t i
= 0; i
< infobar_service
->infobar_count(); ++i
) {
30 InfoBar
* existing_infobar
= infobar_service
->infobar_at(i
);
31 RegisterProtocolHandlerInfoBarDelegate
* existing_delegate
=
32 existing_infobar
->delegate()->
33 AsRegisterProtocolHandlerInfoBarDelegate();
34 if ((existing_delegate
!= NULL
) &&
35 existing_delegate
->handler_
.IsEquivalent(handler
)) {
36 infobar_service
->ReplaceInfoBar(existing_infobar
, infobar
.Pass());
41 infobar_service
->AddInfoBar(infobar
.Pass());
44 RegisterProtocolHandlerInfoBarDelegate::RegisterProtocolHandlerInfoBarDelegate(
45 ProtocolHandlerRegistry
* registry
,
46 const ProtocolHandler
& handler
)
47 : ConfirmInfoBarDelegate(),
52 RegisterProtocolHandlerInfoBarDelegate::
53 ~RegisterProtocolHandlerInfoBarDelegate() {
56 InfoBarDelegate::InfoBarAutomationType
57 RegisterProtocolHandlerInfoBarDelegate::GetInfoBarAutomationType() const {
62 RegisterProtocolHandlerInfoBarDelegate::GetInfoBarType() const {
63 return PAGE_ACTION_TYPE
;
66 RegisterProtocolHandlerInfoBarDelegate
*
67 RegisterProtocolHandlerInfoBarDelegate::
68 AsRegisterProtocolHandlerInfoBarDelegate() {
72 base::string16
RegisterProtocolHandlerInfoBarDelegate::GetMessageText() const {
73 ProtocolHandler old_handler
= registry_
->GetHandlerFor(handler_
.protocol());
74 return old_handler
.IsEmpty() ?
75 l10n_util::GetStringFUTF16(IDS_REGISTER_PROTOCOL_HANDLER_CONFIRM
,
76 handler_
.title(), base::UTF8ToUTF16(handler_
.url().host()),
77 GetProtocolName(handler_
)) :
78 l10n_util::GetStringFUTF16(IDS_REGISTER_PROTOCOL_HANDLER_CONFIRM_REPLACE
,
79 handler_
.title(), base::UTF8ToUTF16(handler_
.url().host()),
80 GetProtocolName(handler_
), old_handler
.title());
83 base::string16
RegisterProtocolHandlerInfoBarDelegate::GetButtonLabel(
84 InfoBarButton button
) const {
85 return (button
== BUTTON_OK
) ?
86 l10n_util::GetStringFUTF16(IDS_REGISTER_PROTOCOL_HANDLER_ACCEPT
,
88 l10n_util::GetStringUTF16(IDS_REGISTER_PROTOCOL_HANDLER_DENY
);
91 bool RegisterProtocolHandlerInfoBarDelegate::NeedElevation(
92 InfoBarButton button
) const {
93 return button
== BUTTON_OK
;
96 bool RegisterProtocolHandlerInfoBarDelegate::Accept() {
97 content::RecordAction(
98 base::UserMetricsAction("RegisterProtocolHandler.Infobar_Accept"));
99 registry_
->OnAcceptRegisterProtocolHandler(handler_
);
103 bool RegisterProtocolHandlerInfoBarDelegate::Cancel() {
104 content::RecordAction(
105 base::UserMetricsAction("RegisterProtocolHandler.InfoBar_Deny"));
106 registry_
->OnIgnoreRegisterProtocolHandler(handler_
);
110 base::string16
RegisterProtocolHandlerInfoBarDelegate::GetLinkText() const {
111 return l10n_util::GetStringUTF16(IDS_LEARN_MORE
);
114 bool RegisterProtocolHandlerInfoBarDelegate::LinkClicked(
115 WindowOpenDisposition disposition
) {
116 content::RecordAction(
117 base::UserMetricsAction("RegisterProtocolHandler.InfoBar_LearnMore"));
118 web_contents()->OpenURL(content::OpenURLParams(
119 GURL(chrome::kLearnMoreRegisterProtocolHandlerURL
), content::Referrer(),
120 (disposition
== CURRENT_TAB
) ? NEW_FOREGROUND_TAB
: disposition
,
121 content::PAGE_TRANSITION_LINK
, false));
125 base::string16
RegisterProtocolHandlerInfoBarDelegate::GetProtocolName(
126 const ProtocolHandler
& handler
) const {
127 if (handler
.protocol() == "mailto")
128 return l10n_util::GetStringUTF16(IDS_REGISTER_PROTOCOL_HANDLER_MAILTO_NAME
);
129 if (handler
.protocol() == "webcal")
130 return l10n_util::GetStringUTF16(IDS_REGISTER_PROTOCOL_HANDLER_WEBCAL_NAME
);
131 return base::UTF8ToUTF16(handler
.protocol());