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

Unified Diff: content/renderer/pepper/pepper_hung_plugin_filter.cc

Issue 10388186: RefCounted types should not have public destructors (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
« no previous file with comments | « content/renderer/pepper/pepper_hung_plugin_filter.h ('k') | net/base/tcp_listen_socket.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/pepper/pepper_hung_plugin_filter.cc
diff --git a/content/renderer/pepper/pepper_hung_plugin_filter.cc b/content/renderer/pepper/pepper_hung_plugin_filter.cc
index 4da00fc16431cf1c17951e09f5b215b6f2c2af58..71ff41237c77ccdcbfdcdb8b15cf825440a6e8a4 100644
--- a/content/renderer/pepper/pepper_hung_plugin_filter.cc
+++ b/content/renderer/pepper/pepper_hung_plugin_filter.cc
@@ -36,9 +36,6 @@ PepperHungPluginFilter::PepperHungPluginFilter(const FilePath& plugin_path,
timer_task_pending_(false) {
}
-PepperHungPluginFilter::~PepperHungPluginFilter() {
-}
-
void PepperHungPluginFilter::BeginBlockOnSyncMessage() {
base::AutoLock lock(lock_);
if (pending_sync_message_count_ == 0)
@@ -77,6 +74,8 @@ bool PepperHungPluginFilter::OnMessageReceived(const IPC::Message& message) {
return false;
}
+PepperHungPluginFilter::~PepperHungPluginFilter() {}
+
void PepperHungPluginFilter::EnsureTimerScheduled() {
lock_.AssertAcquired();
if (timer_task_pending_)
« no previous file with comments | « content/renderer/pepper/pepper_hung_plugin_filter.h ('k') | net/base/tcp_listen_socket.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698