From e5e9c02081e6b37f49febeba87863a1dac598949 Mon Sep 17 00:00:00 2001 From: "jamesr@chromium.org" Date: Tue, 30 Oct 2012 22:59:56 +0000 Subject: 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 Review URL: https://codereview.chromium.org/11344004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@165050 0039d316-1c4b-4281-b951-d872f2087c98 --- cc/gl_renderer_unittest.cc | 3 --- 1 file changed, 3 deletions(-) (limited to 'cc/gl_renderer_unittest.cc') diff --git a/cc/gl_renderer_unittest.cc b/cc/gl_renderer_unittest.cc index f88ba6c..01b1d51 100644 --- a/cc/gl_renderer_unittest.cc +++ b/cc/gl_renderer_unittest.cc @@ -13,7 +13,6 @@ #include "cc/test/fake_web_compositor_output_surface.h" #include "cc/test/fake_web_graphics_context_3d.h" #include "cc/test/test_common.h" -#include "cc/test/web_compositor_initializer.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/include/gtest/gtest.h" #include "third_party/khronos/GLES2/gl2.h" @@ -114,7 +113,6 @@ protected: GLRendererTest() : m_suggestHaveBackbufferYes(1, true) , m_suggestHaveBackbufferNo(1, false) - , m_compositorInitializer(0) , m_context(FakeWebCompositorOutputSurface::create(scoped_ptr(new FrameCountingMemoryAllocationSettingContext()))) , m_resourceProvider(ResourceProvider::create(m_context.get())) , m_renderer(&m_mockClient, m_resourceProvider.get()) @@ -136,7 +134,6 @@ protected: WebGraphicsMemoryAllocation m_suggestHaveBackbufferYes; WebGraphicsMemoryAllocation m_suggestHaveBackbufferNo; - WebCompositorInitializer m_compositorInitializer; scoped_ptr m_context; FakeRendererClient m_mockClient; scoped_ptr m_resourceProvider; -- cgit v1.1