| OLD | NEW |
| 1 // Copyright 2010 The Chromium Authors. All rights reserved. | 1 // Copyright 2010 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 #ifndef TextureLayerChromium_h | 5 #ifndef TextureLayerChromium_h |
| 6 #define TextureLayerChromium_h | 6 #define TextureLayerChromium_h |
| 7 | 7 |
| 8 #include "LayerChromium.h" | 8 #include "cc/layer.h" |
| 9 | 9 |
| 10 namespace WebKit { | 10 namespace WebKit { |
| 11 class WebGraphicsContext3D; | 11 class WebGraphicsContext3D; |
| 12 } | 12 } |
| 13 | 13 |
| 14 namespace cc { | 14 namespace cc { |
| 15 | 15 |
| 16 class TextureLayerChromiumClient; | 16 class TextureLayerChromiumClient; |
| 17 | 17 |
| 18 // A Layer containing a the rendered output of a plugin instance. | 18 // A Layer containing a the rendered output of a plugin instance. |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 FloatRect m_uvRect; | 64 FloatRect m_uvRect; |
| 65 bool m_premultipliedAlpha; | 65 bool m_premultipliedAlpha; |
| 66 bool m_rateLimitContext; | 66 bool m_rateLimitContext; |
| 67 bool m_contextLost; | 67 bool m_contextLost; |
| 68 | 68 |
| 69 unsigned m_textureId; | 69 unsigned m_textureId; |
| 70 }; | 70 }; |
| 71 | 71 |
| 72 } | 72 } |
| 73 #endif | 73 #endif |
| OLD | NEW |