| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ui/gfx/compositor/test_web_graphics_context_3d.h" | 5 #include "ui/compositor/test_web_graphics_context_3d.h" |
| 6 | 6 |
| 7 #include "ui/gfx/gl/gl_context_stub.h" | 7 #include "ui/gfx/gl/gl_context_stub.h" |
| 8 #include "ui/gfx/gl/gl_surface_stub.h" | 8 #include "ui/gfx/gl/gl_surface_stub.h" |
| 9 | 9 |
| 10 namespace ui { | 10 namespace ui { |
| 11 | 11 |
| 12 TestWebGraphicsContext3D::TestWebGraphicsContext3D() {} | 12 TestWebGraphicsContext3D::TestWebGraphicsContext3D() {} |
| 13 TestWebGraphicsContext3D::~TestWebGraphicsContext3D() {} | 13 TestWebGraphicsContext3D::~TestWebGraphicsContext3D() {} |
| 14 | 14 |
| 15 void TestWebGraphicsContext3D::Initialize() { | 15 void TestWebGraphicsContext3D::Initialize() { |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 { | 223 { |
| 224 return 1; | 224 return 1; |
| 225 } | 225 } |
| 226 | 226 |
| 227 WebKit::WGC3Dboolean TestWebGraphicsContext3D::isQueryEXT(WebKit::WebGLId) | 227 WebKit::WGC3Dboolean TestWebGraphicsContext3D::isQueryEXT(WebKit::WebGLId) |
| 228 { | 228 { |
| 229 return true; | 229 return true; |
| 230 } | 230 } |
| 231 | 231 |
| 232 } // namespace ui | 232 } // namespace ui |
| OLD | NEW |