| Index: webkit/gpu/test_context_provider_factory.h
|
| diff --git a/webkit/gpu/test_context_provider_factory.h b/webkit/gpu/test_context_provider_factory.h
|
| deleted file mode 100644
|
| index b173daf2a1b9518b4cef4663b6e10e83883d807c..0000000000000000000000000000000000000000
|
| --- a/webkit/gpu/test_context_provider_factory.h
|
| +++ /dev/null
|
| @@ -1,41 +0,0 @@
|
| -// Copyright (c) 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 WEBKIT_GPU_TEST_CONTEXT_PROVIDER_FACTORY_H_
|
| -#define WEBKIT_GPU_TEST_CONTEXT_PROVIDER_FACTORY_H_
|
| -
|
| -#include "base/memory/ref_counted.h"
|
| -#include "webkit/gpu/webkit_gpu_export.h"
|
| -
|
| -namespace cc {
|
| -class ContextProvider;
|
| -}
|
| -
|
| -namespace webkit {
|
| -namespace gpu {
|
| -class ContextProviderInProcess;
|
| -
|
| -class WEBKIT_GPU_EXPORT TestContextProviderFactory {
|
| - public:
|
| - // The returned pointer is static and should not be deleted by the caller.
|
| - static TestContextProviderFactory* GetInstance();
|
| -
|
| - scoped_refptr<cc::ContextProvider> OffscreenContextProviderForMainThread();
|
| - scoped_refptr<cc::ContextProvider>
|
| - OffscreenContextProviderForCompositorThread();
|
| -
|
| - private:
|
| - TestContextProviderFactory();
|
| - ~TestContextProviderFactory();
|
| -
|
| - scoped_refptr<webkit::gpu::ContextProviderInProcess> main_thread_;
|
| - scoped_refptr<webkit::gpu::ContextProviderInProcess> compositor_thread_;
|
| -
|
| - DISALLOW_COPY_AND_ASSIGN(TestContextProviderFactory);
|
| -};
|
| -
|
| -} // namespace gpu
|
| -} // namespace webkit
|
| -
|
| -#endif // WEBKIT_GPU_TEST_WEBKIT_CONTEXT_PROVIDER_FACTORY_H_
|
|
|