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

Unified Diff: cc/scoped_thread_proxy.cc

Issue 11344004: Remove WebKit::Platform dependencies from cc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix webkit_compositor_bindings_unittests Created 8 years, 2 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 | « cc/scoped_thread_proxy.h ('k') | cc/single_thread_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/scoped_thread_proxy.cc
diff --git a/cc/scoped_thread_proxy.cc b/cc/scoped_thread_proxy.cc
index a181270384c4b7555c90e95d74625383bace6eb2..9391e3bb8f009e9a0d25a5a5dcfe22a91737f0b4 100644
--- a/cc/scoped_thread_proxy.cc
+++ b/cc/scoped_thread_proxy.cc
@@ -6,9 +6,11 @@
#include "cc/scoped_thread_proxy.h"
+#include "base/bind.h"
+
namespace cc {
-ScopedThreadProxy::ScopedThreadProxy(Thread* targetThread)
+ScopedThreadProxy::ScopedThreadProxy(cc::Thread* targetThread)
: m_targetThread(targetThread)
, m_shutdown(false)
{
@@ -18,4 +20,27 @@ ScopedThreadProxy::~ScopedThreadProxy()
{
}
+void ScopedThreadProxy::postTask(const tracked_objects::Location& location, base::Closure cb)
+{
+ m_targetThread->postTask(base::Bind(&ScopedThreadProxy::runTaskIfNotShutdown, this, cb));
+}
+
+void ScopedThreadProxy::shutdown()
+{
+ DCHECK(m_targetThread->belongsToCurrentThread());
+ DCHECK(!m_shutdown);
+ m_shutdown = true;
+}
+
+void ScopedThreadProxy::runTaskIfNotShutdown(base::Closure cb)
+{
+ // If our shutdown flag is set, it's possible that m_targetThread has already been destroyed so don't
+ // touch it.
+ if (m_shutdown) {
+ return;
+ }
+ DCHECK(m_targetThread->belongsToCurrentThread());
+ cb.Run();
+}
+
}
« no previous file with comments | « cc/scoped_thread_proxy.h ('k') | cc/single_thread_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698