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

Unified Diff: webkit/plugins/ppapi/fullscreen_container.h

Issue 10416004: RefCounted types should not have public destructors, webkit/ edition (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to r140259 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
« no previous file with comments | « webkit/plugins/npapi/webplugin_page_delegate.h ('k') | webkit/plugins/ppapi/plugin_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/ppapi/fullscreen_container.h
diff --git a/webkit/plugins/ppapi/fullscreen_container.h b/webkit/plugins/ppapi/fullscreen_container.h
index f8d43566fd165b8d6590f6d84571a7431e95405f..88500cda0f1943ba45795da8f1857040749e34c0 100644
--- a/webkit/plugins/ppapi/fullscreen_container.h
+++ b/webkit/plugins/ppapi/fullscreen_container.h
@@ -21,8 +21,6 @@ namespace ppapi {
// plugins, that only handles painting.
class FullscreenContainer {
public:
- virtual ~FullscreenContainer() {}
-
// Invalidates the full plugin region.
virtual void Invalidate() = 0;
@@ -43,6 +41,9 @@ class FullscreenContainer {
// The returned object is owned by FullscreenContainer.
virtual MouseLockDispatcher* GetMouseLockDispatcher() = 0;
+
+ protected:
+ virtual ~FullscreenContainer() {}
};
} // namespace ppapi
« no previous file with comments | « webkit/plugins/npapi/webplugin_page_delegate.h ('k') | webkit/plugins/ppapi/plugin_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698