// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // This file contains the mock ErrorState class. #ifndef GPU_COMMAND_BUFFER_SERVICE_ERROR_STATE_MOCK_H_ #define GPU_COMMAND_BUFFER_SERVICE_ERROR_STATE_MOCK_H_ #include <stdint.h> #include "gpu/command_buffer/service/error_state.h" #include "testing/gmock/include/gmock/gmock.h" namespace gpu { namespace gles2 { class MockErrorState : public ErrorState { … }; } // namespace gles2 } // namespace gpu #endif // GPU_COMMAND_BUFFER_SERVICE_ERROR_STATE_MOCK_H_