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

Unified Diff: content/gpu/gpu_info_collector_win.cc

Issue 6839008: Split EGLContext in GLContextEGL and GLSurfaceEGL. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 8 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 | « no previous file | ui/gfx/gl/egl_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/gpu/gpu_info_collector_win.cc
===================================================================
--- content/gpu/gpu_info_collector_win.cc (revision 81471)
+++ content/gpu/gpu_info_collector_win.cc (working copy)
@@ -13,8 +13,8 @@
#include "base/memory/scoped_native_library.h"
#include "base/string_number_conversions.h"
#include "base/string_util.h"
-#include "ui/gfx/gl/gl_context_egl.h"
#include "ui/gfx/gl/gl_implementation.h"
+#include "ui/gfx/gl/gl_surface_egl.h"
// ANGLE seems to require that main.h be included before any other ANGLE header.
#include "libEGL/main.h"
@@ -72,7 +72,7 @@
// Need to handle the case when running on top of real EGL/GLES2 drivers.
egl::Display* display = static_cast<egl::Display*>(
- gfx::BaseEGLContext::GetDisplay());
+ gfx::GLSurfaceEGL::GetDisplay());
if (!display) {
LOG(ERROR) << "gfx::BaseEGLContext::GetDisplay() failed";
return false;
« no previous file with comments | « no previous file | ui/gfx/gl/egl_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698