| Index: ui/gl/gl_api_unittest.cc
|
| diff --git a/ui/gl/gl_api_unittest.cc b/ui/gl/gl_api_unittest.cc
|
| index 23c3075b1939659598bddcafdd115ef93c31670c..6f274b467347a3b49bec37f2f4bb2ff05ce35ecd 100644
|
| --- a/ui/gl/gl_api_unittest.cc
|
| +++ b/ui/gl/gl_api_unittest.cc
|
| @@ -51,8 +51,9 @@ class GLApiTest : public testing::Test {
|
| static_cast<GLGetProcAddressProc>(&FakeGLGetProcAddress));
|
| }
|
|
|
| - static void* GL_BINDING_CALL FakeGLGetProcAddress(const char *proc) {
|
| - return reinterpret_cast<void*>(0x1);
|
| + static GLFunctionPointerType GL_BINDING_CALL
|
| + FakeGLGetProcAddress(const char* proc) {
|
| + return reinterpret_cast<GLFunctionPointerType>(0x1);
|
| }
|
|
|
| void TearDown() override {
|
|
|