| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "gpu/command_buffer/common/capabilities.h" | 5 #include "gpu/command_buffer/common/capabilities.h" |
| 6 #include "platform/RuntimeEnabledFeatures.h" | 6 #include "platform/RuntimeEnabledFeatures.h" |
| 7 #include "platform/graphics/CanvasColorParams.h" | 7 #include "platform/graphics/CanvasColorParams.h" |
| 8 #include "platform/graphics/gpu/DrawingBuffer.h" | 8 #include "platform/graphics/gpu/DrawingBuffer.h" |
| 9 #include "platform/graphics/gpu/Extensions3DUtil.h" | 9 #include "platform/graphics/gpu/Extensions3DUtil.h" |
| 10 #include "public/platform/WebGraphicsContext3DProvider.h" | 10 #include "public/platform/WebGraphicsContext3DProvider.h" |
| (...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 415 | 415 |
| 416 GLES2InterfaceForTests* ContextGLForTests() { | 416 GLES2InterfaceForTests* ContextGLForTests() { |
| 417 return static_cast<GLES2InterfaceForTests*>(ContextGL()); | 417 return static_cast<GLES2InterfaceForTests*>(ContextGL()); |
| 418 } | 418 } |
| 419 | 419 |
| 420 bool* live_; | 420 bool* live_; |
| 421 | 421 |
| 422 int RecycledBitmapCount() { return recycled_bitmaps_.size(); } | 422 int RecycledBitmapCount() { return recycled_bitmaps_.size(); } |
| 423 }; | 423 }; |
| 424 | 424 |
| 425 } // blink | 425 } // namespace blink |
| OLD | NEW |