diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-30 03:32:55 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-30 03:32:55 +0000 |
commit | 10b1d38175a1d8e2f2f38f6e611c34ea155b2a5b (patch) | |
tree | f9d5487be608239d87e2c5365c0d9771cd92ac07 /cc/thread_proxy.h | |
parent | 7f56247a5c225cfd89ed64248c74cbf51142cb8a (diff) | |
download | chromium_src-10b1d38175a1d8e2f2f38f6e611c34ea155b2a5b.zip chromium_src-10b1d38175a1d8e2f2f38f6e611c34ea155b2a5b.tar.gz chromium_src-10b1d38175a1d8e2f2f38f6e611c34ea155b2a5b.tar.bz2 |
cc: Remove the remaining uses of WTF::ThreadSafeRefCounted.
Convert its usage to base::RefCountedThreadSafe API.
BUG=154451
TEST=cc_unittests
R=enne@chromium.org,jamesr@chromium.org
NOTRY=True
Review URL: https://chromiumcodereview.appspot.com/11301015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@164839 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/thread_proxy.h')
-rw-r--r-- | cc/thread_proxy.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cc/thread_proxy.h b/cc/thread_proxy.h index d20e8f4..1c57dfb 100644 --- a/cc/thread_proxy.h +++ b/cc/thread_proxy.h @@ -148,7 +148,7 @@ private: scoped_ptr<Scheduler> m_schedulerOnImplThread; - RefPtr<ScopedThreadProxy> m_mainThreadProxy; + scoped_refptr<ScopedThreadProxy> m_mainThreadProxy; // Holds on to the context we might use for compositing in between initializeContext() // and initializeRenderer() calls. @@ -180,6 +180,6 @@ private: bool m_deferredCommitPending; }; -} +} // namespace cc #endif |