| Index: ui/gl/gl_implementation.cc
|
| diff --git a/ui/gl/gl_implementation.cc b/ui/gl/gl_implementation.cc
|
| index d8de8c26913c24ee4c96a45ff1533bfc63a38a62..5dac760d2a94feb31b0ec79b935b60b1c434b581 100644
|
| --- a/ui/gl/gl_implementation.cc
|
| +++ b/ui/gl/gl_implementation.cc
|
| @@ -11,6 +11,7 @@
|
| #include "base/command_line.h"
|
| #include "base/logging.h"
|
| #include "ui/gl/gl_bindings.h"
|
| +#include "ui/gl/gl_gl_api_implementation.h"
|
|
|
| namespace gfx {
|
|
|
| @@ -171,4 +172,10 @@ void* GetGLProcAddress(const char* name) {
|
| return proc;
|
| }
|
|
|
| +void InitializeNullDrawGLBindings() {
|
| + // This is platform independent, so it does not need to live in a platform
|
| + // specific implementation file.
|
| + InitializeNullDrawGLBindingsGL();
|
| +}
|
| +
|
| } // namespace gfx
|
|
|