| 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 | |
| 6 #ifndef ContentLayerChromium_h | 5 #ifndef ContentLayerChromium_h |
| 7 #define ContentLayerChromium_h | 6 #define ContentLayerChromium_h |
| 8 | 7 |
| 9 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 10 #include "LayerPainterChromium.h" | 9 #include "cc/layer_painter.h" |
| 11 #include "TiledLayerChromium.h" | 10 #include "cc/tiled_layer.h" |
| 12 | 11 |
| 13 class SkCanvas; | 12 class SkCanvas; |
| 14 | 13 |
| 15 namespace cc { | 14 namespace cc { |
| 16 | 15 |
| 17 class ContentLayerChromiumClient; | 16 class ContentLayerChromiumClient; |
| 18 class FloatRect; | 17 class FloatRect; |
| 19 class IntRect; | 18 class IntRect; |
| 20 class LayerTextureUpdater; | 19 class LayerTextureUpdater; |
| 21 | 20 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 private: | 53 private: |
| 55 virtual LayerTextureUpdater* textureUpdater() const OVERRIDE; | 54 virtual LayerTextureUpdater* textureUpdater() const OVERRIDE; |
| 56 virtual void createTextureUpdaterIfNeeded() OVERRIDE; | 55 virtual void createTextureUpdaterIfNeeded() OVERRIDE; |
| 57 | 56 |
| 58 ContentLayerChromiumClient* m_client; | 57 ContentLayerChromiumClient* m_client; |
| 59 RefPtr<LayerTextureUpdater> m_textureUpdater; | 58 RefPtr<LayerTextureUpdater> m_textureUpdater; |
| 60 }; | 59 }; |
| 61 | 60 |
| 62 } | 61 } |
| 63 #endif | 62 #endif |
| OLD | NEW |