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

Unified Diff: webkit/plugins/npapi/plugin_lib_unittest.cc

Issue 10066044: RefCounted types should not have public destructors, webkit/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Implementation ordering 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
« no previous file with comments | « webkit/media/buffered_data_source_unittest.cc ('k') | webkit/plugins/npapi/plugin_stream_url.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/plugins/npapi/plugin_lib_unittest.cc
diff --git a/webkit/plugins/npapi/plugin_lib_unittest.cc b/webkit/plugins/npapi/plugin_lib_unittest.cc
index 516c24bc58a566174325e56ccd8192b89b344676..d62174d3015eabdf5f700f1954e93e192504df50 100644
--- a/webkit/plugins/npapi/plugin_lib_unittest.cc
+++ b/webkit/plugins/npapi/plugin_lib_unittest.cc
@@ -17,9 +17,11 @@ namespace npapi {
// variable, we can get a crash if no plugin libs were marked as always loaded.
class PluginLibTest : public PluginLib {
public:
- PluginLibTest() : PluginLib(WebPluginInfo(), NULL) {
- }
+ PluginLibTest() : PluginLib(WebPluginInfo(), NULL) {}
using PluginLib::Unload;
+
+ protected:
+ virtual ~PluginLibTest() {}
};
TEST(PluginLibLoading, UnloadAllPlugins) {
« no previous file with comments | « webkit/media/buffered_data_source_unittest.cc ('k') | webkit/plugins/npapi/plugin_stream_url.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698