Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1330)

Unified Diff: ui/gl/gl_bindings.h

Issue 1203513004: Respect the disabled extension list during binding initialization. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/gl/generate_bindings.py ('k') | ui/gl/gl_bindings.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gl/gl_bindings.h
diff --git a/ui/gl/gl_bindings.h b/ui/gl/gl_bindings.h
index 7002efef7509fc4f6670fa4996a0c35e621e0527..878e77674406fb79f8006b59ab5b10f45079e2dc 100644
--- a/ui/gl/gl_bindings.h
+++ b/ui/gl/gl_bindings.h
@@ -345,6 +345,7 @@ struct GL_EXPORT DriverGL {
struct GL_EXPORT DriverOSMESA {
void InitializeStaticBindings();
+ void InitializeExtensionBindings();
void InitializeDebugBindings();
void ClearBindings();
@@ -359,6 +360,7 @@ struct GL_EXPORT DriverOSMESA {
#if defined(OS_WIN)
struct GL_EXPORT DriverWGL {
void InitializeStaticBindings();
+ void InitializeExtensionBindings();
void InitializeDebugBindings();
void ClearBindings();
@@ -374,6 +376,7 @@ struct GL_EXPORT DriverWGL {
#if defined(OS_WIN) || defined(USE_X11) || defined(OS_ANDROID) || defined(USE_OZONE)
struct GL_EXPORT DriverEGL {
void InitializeStaticBindings();
+ void InitializeExtensionBindings();
void InitializeDebugBindings();
void ClearBindings();
@@ -389,6 +392,7 @@ struct GL_EXPORT DriverEGL {
#if defined(USE_X11)
struct GL_EXPORT DriverGLX {
void InitializeStaticBindings();
+ void InitializeExtensionBindings();
void InitializeDebugBindings();
void ClearBindings();
« no previous file with comments | « ui/gl/generate_bindings.py ('k') | ui/gl/gl_bindings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698