summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/views/extensions/extension_installed_bubble.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/ui/views/extensions/extension_installed_bubble.cc')
-rw-r--r--chrome/browser/ui/views/extensions/extension_installed_bubble.cc10
1 files changed, 10 insertions, 0 deletions
diff --git a/chrome/browser/ui/views/extensions/extension_installed_bubble.cc b/chrome/browser/ui/views/extensions/extension_installed_bubble.cc
index 9ea61f3..08d7c6c 100644
--- a/chrome/browser/ui/views/extensions/extension_installed_bubble.cc
+++ b/chrome/browser/ui/views/extensions/extension_installed_bubble.cc
@@ -270,6 +270,8 @@ ExtensionInstalledBubble::ExtensionInstalledBubble(const Extension* extension,
Source<Profile>(browser->profile()));
}
+ExtensionInstalledBubble::~ExtensionInstalledBubble() {}
+
void ExtensionInstalledBubble::Observe(NotificationType type,
const NotificationSource& source,
const NotificationDetails& details) {
@@ -370,3 +372,11 @@ void ExtensionInstalledBubble::InfoBubbleClosing(InfoBubble* info_bubble,
Release(); // Balanced in ctor.
}
+
+bool ExtensionInstalledBubble::CloseOnEscape() {
+ return true;
+}
+
+bool ExtensionInstalledBubble::FadeInOnShow() {
+ return true;
+}