1 // Copyright 2014 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/gpu/three_d_api_observer.h"
7 #include "base/metrics/histogram.h"
8 #include "chrome/browser/infobars/infobar_service.h"
9 #include "chrome/browser/tab_contents/tab_util.h"
10 #include "chrome/grit/generated_resources.h"
11 #include "components/infobars/core/confirm_infobar_delegate.h"
12 #include "components/infobars/core/infobar.h"
13 #include "content/public/browser/gpu_data_manager.h"
14 #include "grit/components_strings.h"
15 #include "grit/theme_resources.h"
16 #include "ui/base/l10n/l10n_util.h"
19 // ThreeDAPIInfoBarDelegate ---------------------------------------------------
21 class ThreeDAPIInfoBarDelegate
: public ConfirmInfoBarDelegate
{
23 // Creates a 3D API infobar and delegate and adds the infobar to
25 static void Create(InfoBarService
* infobar_service
,
27 content::ThreeDAPIType requester
);
30 enum DismissalHistogram
{
33 CLOSED_WITHOUT_ACTION
,
37 ThreeDAPIInfoBarDelegate(const GURL
& url
, content::ThreeDAPIType requester
);
38 virtual ~ThreeDAPIInfoBarDelegate();
40 // ConfirmInfoBarDelegate:
41 virtual bool EqualsDelegate(
42 infobars::InfoBarDelegate
* delegate
) const override
;
43 virtual int GetIconID() const override
;
44 virtual base::string16
GetMessageText() const override
;
45 virtual base::string16
GetButtonLabel(InfoBarButton button
) const override
;
46 virtual bool Accept() override
;
47 virtual bool Cancel() override
;
48 virtual base::string16
GetLinkText() const override
;
49 virtual bool LinkClicked(WindowOpenDisposition disposition
) override
;
52 content::ThreeDAPIType requester_
;
53 // Basically indicates whether the infobar was displayed at all, or
54 // was a temporary instance thrown away by the InfobarService.
55 mutable bool message_text_queried_
;
58 DISALLOW_COPY_AND_ASSIGN(ThreeDAPIInfoBarDelegate
);
62 void ThreeDAPIInfoBarDelegate::Create(InfoBarService
* infobar_service
,
64 content::ThreeDAPIType requester
) {
66 return; // NULL for apps.
67 infobar_service
->AddInfoBar(ConfirmInfoBarDelegate::CreateInfoBar(
68 scoped_ptr
<ConfirmInfoBarDelegate
>(
69 new ThreeDAPIInfoBarDelegate(url
, requester
))));
72 ThreeDAPIInfoBarDelegate::ThreeDAPIInfoBarDelegate(
74 content::ThreeDAPIType requester
)
75 : ConfirmInfoBarDelegate(),
77 requester_(requester
),
78 message_text_queried_(false),
79 action_taken_(false) {
82 ThreeDAPIInfoBarDelegate::~ThreeDAPIInfoBarDelegate() {
83 if (message_text_queried_
&& !action_taken_
) {
84 UMA_HISTOGRAM_ENUMERATION("GPU.ThreeDAPIInfoBarDismissal",
85 CLOSED_WITHOUT_ACTION
, DISMISSAL_MAX
);
89 bool ThreeDAPIInfoBarDelegate::EqualsDelegate(
90 infobars::InfoBarDelegate
* delegate
) const {
91 // For the time being, if a given web page is actually using both
92 // WebGL and Pepper 3D and both APIs are blocked, just leave the
93 // first infobar up. If the user selects "try again", both APIs will
94 // be unblocked and the web page reload will succeed.
95 return delegate
->GetIconID() == GetIconID();
98 int ThreeDAPIInfoBarDelegate::GetIconID() const {
99 return IDR_INFOBAR_3D_BLOCKED
;
102 base::string16
ThreeDAPIInfoBarDelegate::GetMessageText() const {
103 message_text_queried_
= true;
105 base::string16 api_name
;
106 switch (requester_
) {
107 case content::THREE_D_API_TYPE_WEBGL
:
108 api_name
= l10n_util::GetStringUTF16(IDS_3D_APIS_WEBGL_NAME
);
110 case content::THREE_D_API_TYPE_PEPPER_3D
:
111 api_name
= l10n_util::GetStringUTF16(IDS_3D_APIS_PEPPER_3D_NAME
);
115 return l10n_util::GetStringFUTF16(IDS_3D_APIS_BLOCKED_TEXT
,
119 base::string16
ThreeDAPIInfoBarDelegate::GetButtonLabel(
120 InfoBarButton button
) const {
121 return l10n_util::GetStringUTF16((button
== BUTTON_OK
) ?
122 IDS_3D_APIS_BLOCKED_OK_BUTTON_LABEL
:
123 IDS_3D_APIS_BLOCKED_TRY_AGAIN_BUTTON_LABEL
);
126 bool ThreeDAPIInfoBarDelegate::Accept() {
127 action_taken_
= true;
128 UMA_HISTOGRAM_ENUMERATION("GPU.ThreeDAPIInfoBarDismissal", IGNORED
,
133 bool ThreeDAPIInfoBarDelegate::Cancel() {
134 action_taken_
= true;
135 UMA_HISTOGRAM_ENUMERATION("GPU.ThreeDAPIInfoBarDismissal", RELOADED
,
137 content::GpuDataManager::GetInstance()->UnblockDomainFrom3DAPIs(url_
);
138 InfoBarService::WebContentsFromInfoBar(infobar())->GetController().Reload(
143 base::string16
ThreeDAPIInfoBarDelegate::GetLinkText() const {
144 return l10n_util::GetStringUTF16(IDS_LEARN_MORE
);
147 bool ThreeDAPIInfoBarDelegate::LinkClicked(WindowOpenDisposition disposition
) {
148 InfoBarService::WebContentsFromInfoBar(infobar())->OpenURL(
149 content::OpenURLParams(
150 GURL("https://support.google.com/chrome/?p=ib_webgl"),
152 (disposition
== CURRENT_TAB
) ? NEW_FOREGROUND_TAB
: disposition
,
153 ui::PAGE_TRANSITION_LINK
, false));
158 // ThreeDAPIObserver ----------------------------------------------------------
160 ThreeDAPIObserver::ThreeDAPIObserver() {
161 content::GpuDataManager::GetInstance()->AddObserver(this);
164 ThreeDAPIObserver::~ThreeDAPIObserver() {
165 content::GpuDataManager::GetInstance()->RemoveObserver(this);
168 void ThreeDAPIObserver::DidBlock3DAPIs(const GURL
& url
,
169 int render_process_id
,
171 content::ThreeDAPIType requester
) {
172 content::WebContents
* web_contents
= tab_util::GetWebContentsByID(
173 render_process_id
, render_view_id
);
176 ThreeDAPIInfoBarDelegate::Create(
177 InfoBarService::FromWebContents(web_contents
), url
, requester
);