// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_STUB_H_ #define GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_STUB_H_ #include "gpu/command_buffer/client/gles2_interface.h" namespace gpu { namespace gles2 { // This class a stub to help with mocks for the GLES2Interface class. class GLES2InterfaceStub : public GLES2Interface { … }; } // namespace gles2 } // namespace gpu #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_STUB_H_