// Copyright 2013 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. #ifndef CC_TEST_FAKE_CONTEXT_PROVIDER_H_ #define CC_TEST_FAKE_CONTEXT_PROVIDER_H_ #include "base/callback.h" #include "base/memory/scoped_ptr.h" #include "base/synchronization/lock.h" #include "cc/output/context_provider.h" namespace cc { class TestWebGraphicsContext3D; class FakeContextProvider : public cc::ContextProvider { public: typedef base::Callback(void)> CreateCallback; static scoped_refptr Create() { scoped_refptr provider = new FakeContextProvider(); if (!provider->InitializeOnMainThread()) return NULL; return provider; } static scoped_refptr Create( const CreateCallback& create_callback) { scoped_refptr provider = new FakeContextProvider(create_callback); if (!provider->InitializeOnMainThread()) return NULL; return provider; } virtual bool BindToCurrentThread() OVERRIDE; virtual WebKit::WebGraphicsContext3D* Context3d() OVERRIDE; virtual class GrContext* GrContext() OVERRIDE; virtual void VerifyContexts() OVERRIDE; virtual bool DestroyedOnMainThread() OVERRIDE; protected: FakeContextProvider(); explicit FakeContextProvider(const CreateCallback& create_callback); virtual ~FakeContextProvider(); bool InitializeOnMainThread(); CreateCallback create_callback_; scoped_ptr context3d_; bool bound_; base::Lock destroyed_lock_; bool destroyed_; }; } // namespace cc #endif // CC_TEST_FAKE_CONTEXT_PROVIDER_H_