1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/plugin_installer_infobar_delegate.h"
#include "base/utf_string_conversions.h"
#include "chrome/browser/google/google_util.h"
#include "chrome/browser/infobars/infobar_tab_helper.h"
#include "chrome/browser/plugin_installer.h"
#include "content/browser/renderer_host/render_view_host.h"
#include "content/public/browser/web_contents.h"
#include "grit/generated_resources.h"
#include "grit/locale_settings.h"
#include "grit/theme_resources_standard.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/base/resource/resource_bundle.h"
using content::OpenURLParams;
using content::Referrer;
PluginInstallerInfoBarDelegate::PluginInstallerInfoBarDelegate(
InfoBarTabHelper* infobar_helper,
PluginInstaller* installer,
const base::Closure& callback,
const string16& message)
: ConfirmInfoBarDelegate(infobar_helper),
WeakPluginInstallerObserver(installer),
callback_(callback),
message_(message) {
}
PluginInstallerInfoBarDelegate::~PluginInstallerInfoBarDelegate() {
}
InfoBarDelegate* PluginInstallerInfoBarDelegate::Create(
InfoBarTabHelper* infobar_helper,
PluginInstaller* installer,
const base::Closure& callback) {
string16 message;
switch (installer->state()) {
case PluginInstaller::kStateIdle:
message = l10n_util::GetStringFUTF16(
IDS_PLUGININSTALLER_INSTALLPLUGIN_PROMPT, installer->name());
break;
case PluginInstaller::kStateDownloading:
message = l10n_util::GetStringUTF16(IDS_PLUGIN_DOWNLOADING);
break;
}
return new PluginInstallerInfoBarDelegate(
infobar_helper, installer, callback, message);
}
gfx::Image* PluginInstallerInfoBarDelegate::GetIcon() const {
return &ResourceBundle::GetSharedInstance().GetNativeImageNamed(
IDR_INFOBAR_PLUGIN_INSTALL);
}
string16 PluginInstallerInfoBarDelegate::GetMessageText() const {
return message_;
}
int PluginInstallerInfoBarDelegate::GetButtons() const {
return callback_.is_null() ? BUTTON_NONE : BUTTON_OK;
}
string16 PluginInstallerInfoBarDelegate::GetButtonLabel(
InfoBarButton button) const {
DCHECK_EQ(BUTTON_OK, button);
return l10n_util::GetStringUTF16(IDS_PLUGININSTALLER_INSTALLPLUGIN_BUTTON);
}
bool PluginInstallerInfoBarDelegate::Accept() {
callback_.Run();
return false;
}
string16 PluginInstallerInfoBarDelegate::GetLinkText() const {
return l10n_util::GetStringUTF16(IDS_PLUGININSTALLER_PROBLEMSINSTALLING);
}
bool PluginInstallerInfoBarDelegate::LinkClicked(
WindowOpenDisposition disposition) {
GURL url(installer()->help_url());
if (url.is_empty()) {
url = google_util::AppendGoogleLocaleParam(GURL(
"https://www.google.com/support/chrome/bin/answer.py?answer=142064"));
}
OpenURLParams params(
url, Referrer(),
(disposition == CURRENT_TAB) ? NEW_FOREGROUND_TAB : disposition,
content::PAGE_TRANSITION_LINK, false);
owner()->web_contents()->OpenURL(params);
return false;
}
void PluginInstallerInfoBarDelegate::DidStartDownload() {
ReplaceWithInfoBar(l10n_util::GetStringUTF16(IDS_PLUGIN_DOWNLOADING));
}
void PluginInstallerInfoBarDelegate::DidFinishDownload() {
ReplaceWithInfoBar(l10n_util::GetStringUTF16(IDS_PLUGIN_INSTALLING));
}
void PluginInstallerInfoBarDelegate::DownloadError(const std::string& message) {
ReplaceWithInfoBar(
l10n_util::GetStringUTF16(IDS_PLUGIN_DOWNLOAD_ERROR_SHORT));
}
void PluginInstallerInfoBarDelegate::OnlyWeakObserversLeft() {
if (owner())
owner()->RemoveInfoBar(this);
}
void PluginInstallerInfoBarDelegate::ReplaceWithInfoBar(
const string16& message) {
// Return early if the message doesn't change. This is important in case the
// PluginInstaller is still iterating over its observers (otherwise we would
// keep replacing infobar delegates infinitely).
if (message_ == message)
return;
if (!owner())
return;
InfoBarDelegate* delegate = new PluginInstallerInfoBarDelegate(
owner(), installer(), base::Closure(), message);
owner()->ReplaceInfoBar(this, delegate);
}
|