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

Unified Diff: chrome/browser/ui/views/extensions/extension_installed_bubble.h

Issue 6622002: Do all OOLing in the views code. linux_views now builds clean with the clang plugin. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 10 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/ui/views/extensions/extension_installed_bubble.h
diff --git a/chrome/browser/ui/views/extensions/extension_installed_bubble.h b/chrome/browser/ui/views/extensions/extension_installed_bubble.h
index ff15b6ddacc748ec7a1a0ba99e12b28c26d24b10..20060ebfa564aa603424a99b251e6148a1d40171 100644
--- a/chrome/browser/ui/views/extensions/extension_installed_bubble.h
+++ b/chrome/browser/ui/views/extensions/extension_installed_bubble.h
@@ -54,7 +54,7 @@ class ExtensionInstalledBubble
ExtensionInstalledBubble(const Extension* extension, Browser *browser,
SkBitmap icon);
- ~ExtensionInstalledBubble() {}
+ virtual ~ExtensionInstalledBubble();
// Shows the bubble. Called internally via PostTask.
void ShowInternal();
@@ -67,8 +67,8 @@ class ExtensionInstalledBubble
// InfoBubbleDelegate
virtual void InfoBubbleClosing(InfoBubble* info_bubble,
bool closed_by_escape);
- virtual bool CloseOnEscape() { return true; }
- virtual bool FadeInOnShow() { return true; }
+ virtual bool CloseOnEscape();
+ virtual bool FadeInOnShow();
const Extension* extension_;
Browser* browser_;

Powered by Google App Engine
This is Rietveld 408576698