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

Unified Diff: ui/gl/gl_implementation.cc

Issue 2014223002: Follow-up fixes to changing namespace gfx to gl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 7 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/gl_image_surface_texture.cc ('k') | ui/gl/gl_surface.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gl/gl_implementation.cc
diff --git a/ui/gl/gl_implementation.cc b/ui/gl/gl_implementation.cc
index f24732d22f1172d6373321e62be914eee99b4359..c0c531746e5852ba9d6ec670dd3b0ba033213ed6 100644
--- a/ui/gl/gl_implementation.cc
+++ b/ui/gl/gl_implementation.cc
@@ -206,8 +206,8 @@ bool WillUseGLGetStringForExtensions() {
reinterpret_cast<const char*>(glGetString(GL_VERSION));
unsigned major_version, minor_version;
bool is_es, is_es2, is_es3;
- gl::GLVersionInfo::ParseVersionString(
- version_str, &major_version, &minor_version, &is_es, &is_es2, &is_es3);
+ GLVersionInfo::ParseVersionString(version_str, &major_version, &minor_version,
+ &is_es, &is_es2, &is_es3);
return is_es || major_version < 3;
}
« no previous file with comments | « ui/gl/gl_image_surface_texture.cc ('k') | ui/gl/gl_surface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698