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

Unified Diff: cc/proxy.cc

Issue 11232051: Remove static thread pointers from CC (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Apply code review comments Created 8 years, 1 month 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/proxy.h ('k') | cc/quad_culler_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/proxy.cc
diff --git a/cc/proxy.cc b/cc/proxy.cc
index a1b37f4be760b5f07aa6d688e7aac317be499cd8..5682a3fee06867db4b13e0709fd13ea9ff28b217 100644
--- a/cc/proxy.cc
+++ b/cc/proxy.cc
@@ -7,70 +7,52 @@
#include "cc/proxy.h"
#include "cc/thread.h"
+#include "cc/thread_impl.h"
namespace cc {
-namespace {
-#ifndef NDEBUG
-bool implThreadIsOverridden = false;
-bool s_isMainThreadBlocked = false;
-#endif
-Thread* s_mainThread = 0;
-Thread* s_implThread = 0;
-}
-
-void Proxy::setMainThread(Thread* thread)
-{
- s_mainThread = thread;
-}
-
-Thread* Proxy::mainThread()
+Thread* Proxy::mainThread() const
{
- return s_mainThread;
+ return m_mainThread.get();
}
-bool Proxy::hasImplThread()
+bool Proxy::hasImplThread() const
{
- return s_implThread;
+ return m_implThread;
}
-void Proxy::setImplThread(Thread* thread)
+Thread* Proxy::implThread() const
{
- s_implThread = thread;
+ return m_implThread.get();
}
-Thread* Proxy::implThread()
+Thread* Proxy::currentThread() const
{
- return s_implThread;
-}
-
-Thread* Proxy::currentThread()
-{
- if (s_mainThread && s_mainThread->belongsToCurrentThread())
- return s_mainThread;
- if (s_implThread && s_implThread->belongsToCurrentThread())
- return s_implThread;
+ if (mainThread() && mainThread()->belongsToCurrentThread())
+ return mainThread();
+ if (implThread() && implThread()->belongsToCurrentThread())
+ return implThread();
return 0;
}
-bool Proxy::isMainThread()
+bool Proxy::isMainThread() const
{
#ifndef NDEBUG
- DCHECK(s_mainThread);
- if (implThreadIsOverridden)
+ DCHECK(mainThread());
+ if (m_implThreadIsOverridden)
return false;
- return s_mainThread->belongsToCurrentThread();
+ return mainThread()->belongsToCurrentThread();
#else
return true;
#endif
}
-bool Proxy::isImplThread()
+bool Proxy::isImplThread() const
{
#ifndef NDEBUG
- if (implThreadIsOverridden)
+ if (m_implThreadIsOverridden)
return true;
- return s_implThread && s_implThread->belongsToCurrentThread();
+ return implThread() && implThread()->belongsToCurrentThread();
#else
return true;
#endif
@@ -79,14 +61,14 @@ bool Proxy::isImplThread()
#ifndef NDEBUG
void Proxy::setCurrentThreadIsImplThread(bool isImplThread)
{
- implThreadIsOverridden = isImplThread;
+ m_implThreadIsOverridden = isImplThread;
}
#endif
-bool Proxy::isMainThreadBlocked()
+bool Proxy::isMainThreadBlocked() const
{
#ifndef NDEBUG
- return s_isMainThreadBlocked;
+ return m_isMainThreadBlocked;
#else
return true;
#endif
@@ -95,13 +77,18 @@ bool Proxy::isMainThreadBlocked()
#ifndef NDEBUG
void Proxy::setMainThreadBlocked(bool isMainThreadBlocked)
{
- s_isMainThreadBlocked = isMainThreadBlocked;
+ m_isMainThreadBlocked = isMainThreadBlocked;
}
#endif
-Proxy::Proxy()
+Proxy::Proxy(scoped_ptr<Thread> implThread)
+ : m_mainThread(ThreadImpl::createForCurrentThread())
+ , m_implThread(implThread.Pass())
+#ifndef NDEBUG
+ , m_implThreadIsOverridden(false)
+ , m_isMainThreadBlocked(false)
+#endif
{
- DCHECK(isMainThread());
}
Proxy::~Proxy()
« no previous file with comments | « cc/proxy.h ('k') | cc/quad_culler_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698