| 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 | 5 |
| 6 #ifndef ImageLayerChromium_h | 6 #ifndef ImageLayerChromium_h |
| 7 #define ImageLayerChromium_h | 7 #define ImageLayerChromium_h |
| 8 | 8 |
| 9 #include "ContentLayerChromium.h" | 9 #include "ContentLayerChromium.h" |
| 10 #include "SkBitmap.h" | 10 #include "SkBitmap.h" |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 virtual ~ImageLayerChromium(); | 30 virtual ~ImageLayerChromium(); |
| 31 | 31 |
| 32 void setTilingOption(TilingOption); | 32 void setTilingOption(TilingOption); |
| 33 | 33 |
| 34 virtual LayerTextureUpdater* textureUpdater() const OVERRIDE; | 34 virtual LayerTextureUpdater* textureUpdater() const OVERRIDE; |
| 35 virtual void createTextureUpdaterIfNeeded() OVERRIDE; | 35 virtual void createTextureUpdaterIfNeeded() OVERRIDE; |
| 36 virtual IntSize contentBounds() const OVERRIDE; | 36 virtual IntSize contentBounds() const OVERRIDE; |
| 37 | 37 |
| 38 SkBitmap m_bitmap; | 38 SkBitmap m_bitmap; |
| 39 | 39 |
| 40 RefPtr<ImageLayerTextureUpdater> m_textureUpdater; | 40 scoped_refptr<ImageLayerTextureUpdater> m_textureUpdater; |
| 41 }; | 41 }; |
| 42 | 42 |
| 43 } | 43 } |
| 44 #endif | 44 #endif |
| OLD | NEW |