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

Unified Diff: chrome/browser/ui/webui/extensions/extension_icon_source.h

Issue 10067033: RefCounted types should not have public destructors, chrome/browser/ui (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge fix Created 8 years, 8 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/webui/extensions/extension_icon_source.h
diff --git a/chrome/browser/ui/webui/extensions/extension_icon_source.h b/chrome/browser/ui/webui/extensions/extension_icon_source.h
index 5d262c9330abfc7e729eb231cb95f53131817929..8cf5827b6719a2dee51a95436682caf09e5dba38 100644
--- a/chrome/browser/ui/webui/extensions/extension_icon_source.h
+++ b/chrome/browser/ui/webui/extensions/extension_icon_source.h
@@ -49,7 +49,6 @@ class ExtensionIconSource : public ChromeURLDataManager::DataSource,
public ImageLoadingTracker::Observer {
public:
explicit ExtensionIconSource(Profile* profile);
- virtual ~ExtensionIconSource();
// Gets the URL of the |extension| icon in the given |icon_size|, falling back
// based on the |match| type. If |grayscale|, the URL will be for the
@@ -78,6 +77,8 @@ class ExtensionIconSource : public ChromeURLDataManager::DataSource,
// Encapsulates the request parameters for |request_id|.
struct ExtensionIconRequest;
+ virtual ~ExtensionIconSource();
+
// Returns the bitmap for the webstore icon.
const SkBitmap* GetWebStoreImage();

Powered by Google App Engine
This is Rietveld 408576698