Index: third_party/WebKit/Source/modules/webgl/WebGLTimerQueryEXT.cpp |
diff --git a/third_party/WebKit/Source/modules/webgl/WebGLTimerQueryEXT.cpp b/third_party/WebKit/Source/modules/webgl/WebGLTimerQueryEXT.cpp |
index a9186990c2e6db38123cc6221ffd3c65431db4ef..27e4f1cb9ede32e13bce2bc5af86388018d49ff7 100644 |
--- a/third_party/WebKit/Source/modules/webgl/WebGLTimerQueryEXT.cpp |
+++ b/third_party/WebKit/Source/modules/webgl/WebGLTimerQueryEXT.cpp |
@@ -56,7 +56,9 @@ void WebGLTimerQueryEXT::updateCachedResult(gpu::gles2::GLES2Interface* gl) { |
if (!hasTarget()) |
return; |
- // If this is a timestamp query, set the result to 0 and make it available as we don't support timestamps in WebGL due to very poor driver support for them |
+ // If this is a timestamp query, set the result to 0 and make it available as |
+ // we don't support timestamps in WebGL due to very poor driver support for |
+ // them. |
if (m_target == GL_TIMESTAMP_EXT) { |
m_queryResult = 0; |
m_queryResultAvailable = true; |