| Index: chrome/browser/ui/views/extensions/extension_installed_bubble.cc
|
| diff --git a/chrome/browser/ui/views/extensions/extension_installed_bubble.cc b/chrome/browser/ui/views/extensions/extension_installed_bubble.cc
|
| index 9ea61f316d20351fe8121c3424bee651ab12d2e4..08d7c6c4d04dc59ecd0823bb9e6dde55aa57146d 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;
|
| +}
|
|
|