Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(534)

Unified Diff: chrome/browser/extensions/proxy_overridden_bubble_controller.cc

Issue 1137503006: [Extensions] Polish the suspicious extension bubble (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/proxy_overridden_bubble_controller.cc
diff --git a/chrome/browser/extensions/proxy_overridden_bubble_controller.cc b/chrome/browser/extensions/proxy_overridden_bubble_controller.cc
index f2f298c428f91ebc35283a51417db8718f506de4..ca880f5540731bbf83c56620a25c373e9b938d7a 100644
--- a/chrome/browser/extensions/proxy_overridden_bubble_controller.cc
+++ b/chrome/browser/extensions/proxy_overridden_bubble_controller.cc
@@ -43,7 +43,8 @@ class ProxyOverriddenBubbleDelegate
ExtensionMessageBubbleController::BubbleAction user_action) override;
void PerformAction(const ExtensionIdList& list) override;
base::string16 GetTitle() const override;
- base::string16 GetMessageBody(bool anchored_to_browser_action) const override;
+ base::string16 GetMessageBody(bool anchored_to_browser_action,
+ bool for_single_extension) const override;
base::string16 GetOverflowText(
const base::string16& overflow_count) const override;
GURL GetLearnMoreUrl() const override;
@@ -121,7 +122,8 @@ base::string16 ProxyOverriddenBubbleDelegate::GetTitle() const {
}
base::string16 ProxyOverriddenBubbleDelegate::GetMessageBody(
- bool anchored_to_browser_action) const {
+ bool anchored_to_browser_action,
+ bool for_single_extension) const {
if (anchored_to_browser_action) {
return l10n_util::GetStringUTF16(
IDS_EXTENSIONS_PROXY_CONTROLLED_FIRST_LINE_EXTENSION_SPECIFIC);

Powered by Google App Engine
This is Rietveld 408576698