blob: 995c5a898774ca16a8f0ddc65b9ea9ea1de62206 (
plain)
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
|
// 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/extensions/extension_global_error.h"
#include "base/logging.h"
#include "base/string16.h"
#include "base/utf_string_conversions.h"
#include "chrome/browser/extensions/extension_service.h"
#include "chrome/browser/ui/global_error/global_error.h"
#include "grit/chromium_strings.h"
#include "grit/generated_resources.h"
#include "ui/base/l10n/l10n_util.h"
using extensions::ExtensionIdSet;
ExtensionGlobalError::ExtensionGlobalError(ExtensionService* extension_service)
: extension_service_(extension_service),
external_extension_ids_(new ExtensionIdSet),
blacklisted_extension_ids_(new ExtensionIdSet),
orphaned_extension_ids_(new ExtensionIdSet) {
DCHECK(extension_service_);
}
ExtensionGlobalError::~ExtensionGlobalError() {
}
void ExtensionGlobalError::AddExternalExtension(const std::string& id) {
external_extension_ids_->insert(id);
}
void ExtensionGlobalError::AddBlacklistedExtension(const std::string& id) {
blacklisted_extension_ids_->insert(id);
}
void ExtensionGlobalError::AddOrphanedExtension(const std::string& id) {
orphaned_extension_ids_->insert(id);
}
bool ExtensionGlobalError::HasBadge() {
return false;
}
bool ExtensionGlobalError::HasMenuItem() {
return false;
}
int ExtensionGlobalError::MenuItemCommandID() {
NOTREACHED();
return 0;
}
string16 ExtensionGlobalError::MenuItemLabel() {
NOTREACHED();
return NULL;
}
void ExtensionGlobalError::ExecuteMenuItem(Browser* browser) {
NOTREACHED();
}
bool ExtensionGlobalError::HasBubbleView() {
return true;
}
string16 ExtensionGlobalError::GetBubbleViewTitle() {
return l10n_util::GetStringUTF16(IDS_EXTENSION_ALERT_TITLE);
}
string16 ExtensionGlobalError::GenerateMessageSection(
const ExtensionIdSet* extensions,
int template_message_id) {
CHECK(extensions);
CHECK(template_message_id);
string16 message;
for (ExtensionIdSet::const_iterator iter = extensions->begin();
iter != extensions->end(); ++iter) {
const extensions::Extension* e = extension_service_->GetExtensionById(*iter,
true);
message += l10n_util::GetStringFUTF16(template_message_id,
string16(ASCIIToUTF16(e->name())));
}
return message;
}
string16 ExtensionGlobalError::GenerateMessage() {
return GenerateMessageSection(external_extension_ids_.get(),
IDS_EXTENSION_ALERT_ITEM_EXTERNAL) +
GenerateMessageSection(blacklisted_extension_ids_.get(),
IDS_EXTENSION_ALERT_ITEM_BLACKLISTED) +
GenerateMessageSection(orphaned_extension_ids_.get(),
IDS_EXTENSION_ALERT_ITEM_ORPHANED);
}
string16 ExtensionGlobalError::GetBubbleViewMessage() {
if (message_.empty()) {
message_ = GenerateMessage();
if (message_[message_.size()-1] == '\n')
message_.resize(message_.size()-1);
}
return message_;
}
string16 ExtensionGlobalError::GetBubbleViewAcceptButtonLabel() {
return l10n_util::GetStringUTF16(IDS_EXTENSION_ALERT_ITEM_OK);
}
string16 ExtensionGlobalError::GetBubbleViewCancelButtonLabel() {
return l10n_util::GetStringUTF16(IDS_EXTENSION_ALERT_ITEM_DETAILS);
}
void ExtensionGlobalError::OnBubbleViewDidClose(Browser* browser) {
extension_service_->HandleExtensionAlertClosed();
}
void ExtensionGlobalError::BubbleViewAcceptButtonPressed(Browser* browser) {
extension_service_->HandleExtensionAlertAccept();
}
void ExtensionGlobalError::BubbleViewCancelButtonPressed(Browser* browser) {
extension_service_->HandleExtensionAlertDetails(browser);
}
|