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

Unified Diff: content/browser/renderer_host/image_transport_client.h

Issue 10386206: RefCounted types should not have public destructors, chromeos edition (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to r143931 Created 8 years, 6 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: content/browser/renderer_host/image_transport_client.h
diff --git a/content/browser/renderer_host/image_transport_client.h b/content/browser/renderer_host/image_transport_client.h
index b18ea2fd23b54bcb082ed0540b348b1de0ce0a08..7abeb3a6af4160ba5600fc7f74771003ec4e62cc 100644
--- a/content/browser/renderer_host/image_transport_client.h
+++ b/content/browser/renderer_host/image_transport_client.h
@@ -21,8 +21,6 @@ class ImageTransportFactory;
// data is only valid after the first Update().
class ImageTransportClient : public ui::Texture {
public:
- virtual ~ImageTransportClient() {}
-
// Initializes the client with the surface id.
virtual bool Initialize(uint64* surface_handle) = 0;
@@ -39,6 +37,7 @@ class ImageTransportClient : public ui::Texture {
protected:
ImageTransportClient(bool flipped, const gfx::Size& size);
+ virtual ~ImageTransportClient() {}
private:
DISALLOW_COPY_AND_ASSIGN(ImageTransportClient);
« no previous file with comments | « chrome/browser/ui/webui/chromeos/sim_unlock_ui.cc ('k') | content/browser/renderer_host/image_transport_client_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698