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

Unified Diff: ui/gl/gl_surface.cc

Issue 2771053003: WIP: Plumbing input event latency reporting through Mus GPU.
Patch Set: Created 3 years, 9 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
Index: ui/gl/gl_surface.cc
diff --git a/ui/gl/gl_surface.cc b/ui/gl/gl_surface.cc
index 85c3234247416546cf98220dd98e271d14b22d55..7e1979ebf2c5dc3c6fb67f08cb50bdc34436dc6b 100644
--- a/ui/gl/gl_surface.cc
+++ b/ui/gl/gl_surface.cc
@@ -214,7 +214,9 @@ bool GLSurface::ExtensionsContain(const char* c_extensions, const char* name) {
void GLSurface::OnSetSwapInterval(int interval) {
}
-GLSurfaceAdapter::GLSurfaceAdapter(GLSurface* surface) : surface_(surface) {}
+GLSurfaceAdapter::GLSurfaceAdapter(GLSurface* surface) : surface_(surface) {
+ LOG(ERROR) << "GLSurfaceAdapter ctor";
+}
bool GLSurfaceAdapter::Initialize(GLSurfaceFormat format) {
return surface_->Initialize(format);

Powered by Google App Engine
This is Rietveld 408576698