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

Unified Diff: chrome/browser/ui/gtk/extensions/bundle_installed_bubble_gtk.h

Issue 10392152: RefCounted types should not have public destructors, Linux fixes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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/ui/gtk/extensions/bundle_installed_bubble_gtk.h
diff --git a/chrome/browser/ui/gtk/extensions/bundle_installed_bubble_gtk.h b/chrome/browser/ui/gtk/extensions/bundle_installed_bubble_gtk.h
index f1b691b5778b4c708e059f15f24a6b6411126708..c6de4672bb320d27b24d66ed87d69e09a03d18ae 100644
--- a/chrome/browser/ui/gtk/extensions/bundle_installed_bubble_gtk.h
+++ b/chrome/browser/ui/gtk/extensions/bundle_installed_bubble_gtk.h
@@ -24,11 +24,12 @@ class BundleInstalledBubbleGtk
// Displays an installed bubble in the |browser| for the |bundle|.
BundleInstalledBubbleGtk(const extensions::BundleInstaller* bundle,
Browser* browser);
- virtual ~BundleInstalledBubbleGtk();
private:
friend class base::RefCounted<BundleInstalledBubbleGtk>;
+ virtual ~BundleInstalledBubbleGtk();
+
// Assembles the content area of the bubble.
void ShowInternal(const extensions::BundleInstaller* bundle);

Powered by Google App Engine
This is Rietveld 408576698