diff options
author | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-30 23:29:50 +0000 |
---|---|---|
committer | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-30 23:29:50 +0000 |
commit | 4a04889139472080d9be371c2c0f618c4da4e7a0 (patch) | |
tree | 56aa5d18e5e77b6248bd7293f7b43f2f95c713d0 /cc/thread_impl.cc | |
parent | fe9d2edcd0ca528f1489fdb2df7ba5b9563f5f60 (diff) | |
download | chromium_src-4a04889139472080d9be371c2c0f618c4da4e7a0.zip chromium_src-4a04889139472080d9be371c2c0f618c4da4e7a0.tar.gz chromium_src-4a04889139472080d9be371c2c0f618c4da4e7a0.tar.bz2 |
Remove WebKit::Platform dependencies from cc
This removes all dependencies on the static WebKit::Platform pointer from cc.
The biggest change is implementing cc::Thread on top of base::MessageLoopProxy
instead of WebKit::WebThread. For the main thread cc::Thread simply binds to
the current thread's MessageLoopProxy. For the impl thread, the bindings layer
(specifically webkit/compositor_bindings/web_compositor_impl) extracts the
MessageLoopProxy out of the passed in WebThread.
BUG=144539
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=165050
Review URL: https://codereview.chromium.org/11344004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165060 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/thread_impl.cc')
-rw-r--r-- | cc/thread_impl.cc | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/cc/thread_impl.cc b/cc/thread_impl.cc new file mode 100644 index 0000000..6d68a4c --- /dev/null +++ b/cc/thread_impl.cc @@ -0,0 +1,45 @@ +// Copyright 2011 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "cc/thread_impl.h" + +#include "base/message_loop.h" + +namespace cc { + +scoped_ptr<Thread> ThreadImpl::createForCurrentThread() +{ + return scoped_ptr<Thread>(new ThreadImpl(base::MessageLoopProxy::current())).Pass(); +} + +scoped_ptr<Thread> ThreadImpl::createForDifferentThread(scoped_refptr<base::MessageLoopProxy> thread) +{ + return scoped_ptr<Thread>(new ThreadImpl(thread)).Pass(); +} + +ThreadImpl::~ThreadImpl() +{ +} + +void ThreadImpl::postTask(base::Closure cb) +{ + m_thread->PostTask(FROM_HERE, cb); +} + +void ThreadImpl::postDelayedTask(base::Closure cb, long long delayMs) +{ + m_thread->PostDelayedTask(FROM_HERE, cb, base::TimeDelta::FromMilliseconds(delayMs)); +} + +bool ThreadImpl::belongsToCurrentThread() const +{ + return m_thread->BelongsToCurrentThread(); +} + +ThreadImpl::ThreadImpl(scoped_refptr<base::MessageLoopProxy> thread) + : m_thread(thread) +{ +} + +} // namespace cc |