| Index: ui/gl/gl_egl_api_implementation.h
|
| diff --git a/ui/gl/gl_egl_api_implementation.h b/ui/gl/gl_egl_api_implementation.h
|
| index 46f5f842961de97fc5fe7ab6c897fd3653823e69..d09255f0eb666f4a8a24c2576f9519f70b6c9a7a 100644
|
| --- a/ui/gl/gl_egl_api_implementation.h
|
| +++ b/ui/gl/gl_egl_api_implementation.h
|
| @@ -5,6 +5,7 @@
|
| #ifndef UI_GL_GL_EGL_API_IMPLEMENTATION_H_
|
| #define UI_GL_GL_EGL_API_IMPLEMENTATION_H_
|
|
|
| +#include <map>
|
| #include <vector>
|
|
|
| #include "base/compiler_specific.h"
|
| @@ -46,14 +47,13 @@ class GL_EXPORT RealEGLApi : public EGLApiBase {
|
| void Initialize(DriverEGL* driver);
|
| void InitializeWithCommandLine(DriverEGL* driver,
|
| base::CommandLine* command_line);
|
| - void InitializeFilteredExtensions();
|
|
|
| const char* eglQueryStringFn(EGLDisplay dpy, EGLint name) override;
|
|
|
| private:
|
| // Filtered EGL_EXTENSIONS we return to eglQueryStringFn() calls.
|
| std::vector<std::string> disabled_exts_;
|
| - std::string filtered_exts_;
|
| + std::map<EGLDisplay, std::string> filtered_exts_;
|
| };
|
|
|
|
|
|
|