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/layer_tree_host_unittest.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/layer_tree_host_unittest.cc')
-rw-r--r-- | cc/layer_tree_host_unittest.cc | 48 |
1 files changed, 14 insertions, 34 deletions
diff --git a/cc/layer_tree_host_unittest.cc b/cc/layer_tree_host_unittest.cc index f91cec6..fa45580 100644 --- a/cc/layer_tree_host_unittest.cc +++ b/cc/layer_tree_host_unittest.cc @@ -22,7 +22,6 @@ #include "testing/gmock/include/gmock/gmock.h" #include "third_party/khronos/GLES2/gl2.h" #include "third_party/khronos/GLES2/gl2ext.h" -#include <public/Platform.h> #include <public/WebLayerScrollClient.h> #include <public/WebSize.h> @@ -1046,7 +1045,7 @@ public: // We request animation only once. if (!m_animationRequested) { - m_mainThreadProxy->postTask(createThreadTask(this, &LayerTreeHostTestStartPageScaleAnimation::requestStartPageScaleAnimation)); + m_mainThreadProxy->postTask(FROM_HERE, base::Bind(&LayerTreeHostTestStartPageScaleAnimation::requestStartPageScaleAnimation, base::Unretained(this))); m_animationRequested = true; } } @@ -2720,24 +2719,17 @@ public: postSetNeedsCommitToMainThread(); } - class EvictTexturesTask : public WebKit::WebThread::Task { - public: - EvictTexturesTask(LayerTreeHostTestEvictTextures* test) : m_test(test) { } - virtual ~EvictTexturesTask() { } - virtual void run() OVERRIDE - { - DCHECK(m_test->m_implForEvictTextures); - m_test->m_implForEvictTextures->enforceManagedMemoryPolicy(ManagedMemoryPolicy(0)); - } - - private: - LayerTreeHostTestEvictTextures* m_test; - }; - void postEvictTextures() { - DCHECK(webThread()); - webThread()->postTask(new EvictTexturesTask(this)); + DCHECK(implThread()); + implThread()->postTask(base::Bind(&LayerTreeHostTestEvictTextures::evictTexturesOnImplThread, + base::Unretained(this))); + } + + void evictTexturesOnImplThread() + { + DCHECK(m_implForEvictTextures); + m_implForEvictTextures->enforceManagedMemoryPolicy(ManagedMemoryPolicy(0)); } // Commit 1: Just commit and draw normally, then post an eviction at the end @@ -2860,24 +2852,12 @@ public: postSetNeedsCommitToMainThread(); } - class EvictTexturesTask : public WebKit::WebThread::Task { - public: - EvictTexturesTask(LayerTreeHostTestLostContextAfterEvictTextures* test) : m_test(test) { } - virtual ~EvictTexturesTask() { } - virtual void run() OVERRIDE - { - m_test->evictTexturesOnImplThread(); - } - - private: - LayerTreeHostTestLostContextAfterEvictTextures* m_test; - }; - void postEvictTextures() { - if (webThread()) - webThread()->postTask(new EvictTexturesTask(this)); - else { + if (implThread()) { + implThread()->postTask(base::Bind(&LayerTreeHostTestLostContextAfterEvictTextures::evictTexturesOnImplThread, + base::Unretained(this))); + } else { DebugScopedSetImplThread impl; evictTexturesOnImplThread(); } |