1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef GPU_COMMAND_BUFFER_SERVICE_GPU_SERVICE_TEST_H_
6 #define GPU_COMMAND_BUFFER_SERVICE_GPU_SERVICE_TEST_H_
8 #include "base/memory/ref_counted.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "testing/gmock/include/gmock/gmock.h"
11 #include "testing/gtest/include/gtest/gtest.h"
12 #include "ui/gl/gl_mock.h"
15 class GLContextStubWithExtensions
;
21 // Base class for tests that need mock GL bindings.
22 class GpuServiceTest
: public testing::Test
{
25 ~GpuServiceTest() override
;
28 void SetUpWithGLVersion(const char* gl_version
, const char* gl_extensions
);
29 void SetUp() override
;
30 void TearDown() override
;
32 scoped_ptr
< ::testing::StrictMock
< ::gfx::MockGLInterface
> > gl_
;
37 scoped_refptr
<gfx::GLContextStubWithExtensions
> context_
;
43 #endif // GPU_COMMAND_BUFFER_SERVICE_MAILBOX_SYNCHRONIZER_H_