| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 #ifndef CCHeadsUpDisplayLayerImpl_h | 5 #ifndef CC_HEADS_UP_DISPLAY_LAYER_IMPL_H_ |
| 6 #define CCHeadsUpDisplayLayerImpl_h | 6 #define CC_HEADS_UP_DISPLAY_LAYER_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "cc/cc_export.h" | 9 #include "cc/cc_export.h" |
| 10 #include "cc/font_atlas.h" | 10 #include "cc/font_atlas.h" |
| 11 #include "cc/layer_impl.h" | 11 #include "cc/layer_impl.h" |
| 12 #include "cc/scoped_texture.h" | 12 #include "cc/scoped_texture.h" |
| 13 | 13 |
| 14 class SkCanvas; | 14 class SkCanvas; |
| 15 | 15 |
| 16 namespace cc { | 16 namespace cc { |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 void drawFPSCounterText(SkCanvas*, FrameRateCounter*, int top, int width, in
t height); | 48 void drawFPSCounterText(SkCanvas*, FrameRateCounter*, int top, int width, in
t height); |
| 49 void drawDebugRects(SkCanvas*, DebugRectHistory*); | 49 void drawDebugRects(SkCanvas*, DebugRectHistory*); |
| 50 | 50 |
| 51 scoped_ptr<FontAtlas> m_fontAtlas; | 51 scoped_ptr<FontAtlas> m_fontAtlas; |
| 52 scoped_ptr<ScopedTexture> m_hudTexture; | 52 scoped_ptr<ScopedTexture> m_hudTexture; |
| 53 scoped_ptr<SkCanvas> m_hudCanvas; | 53 scoped_ptr<SkCanvas> m_hudCanvas; |
| 54 }; | 54 }; |
| 55 | 55 |
| 56 } // namespace cc | 56 } // namespace cc |
| 57 | 57 |
| 58 #endif // CCHeadsUpDisplayLayerImpl_h | 58 #endif // CC_HEADS_UP_DISPLAY_LAYER_IMPL_H_ |
| OLD | NEW |