// Copyright 2017 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 implements mock EGL Interface for unit testing. The interface // corresponds to the set of functionally distinct EGL functions defined in // generate_bindings.py. #ifndef UI_GL_EGL_MOCK_H_ #define UI_GL_EGL_MOCK_H_ #include "testing/gmock/include/gmock/gmock.h" #include "ui/gl/gl_bindings.h" namespace gl { GLFunctionPointerType; class MockEGLInterface { … }; } // namespace gl #endif // UI_GL_EGL_MOCK_H_