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 CC_LAYERS_HEADS_UP_DISPLAY_LAYER_IMPL_H_ | 5 #ifndef CC_LAYERS_HEADS_UP_DISPLAY_LAYER_IMPL_H_ |
6 #define CC_LAYERS_HEADS_UP_DISPLAY_LAYER_IMPL_H_ | 6 #define CC_LAYERS_HEADS_UP_DISPLAY_LAYER_IMPL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 21 matching lines...) Expand all Loading... |
32 int id) { | 32 int id) { |
33 return make_scoped_ptr(new HeadsUpDisplayLayerImpl(tree_impl, id)); | 33 return make_scoped_ptr(new HeadsUpDisplayLayerImpl(tree_impl, id)); |
34 } | 34 } |
35 ~HeadsUpDisplayLayerImpl() override; | 35 ~HeadsUpDisplayLayerImpl() override; |
36 | 36 |
37 scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) override; | 37 scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) override; |
38 | 38 |
39 bool WillDraw(DrawMode draw_mode, | 39 bool WillDraw(DrawMode draw_mode, |
40 ResourceProvider* resource_provider) override; | 40 ResourceProvider* resource_provider) override; |
41 void AppendQuads(RenderPass* render_pass, | 41 void AppendQuads(RenderPass* render_pass, |
42 const Occlusion& occlusion_in_content_space, | |
43 AppendQuadsData* append_quads_data) override; | 42 AppendQuadsData* append_quads_data) override; |
44 void UpdateHudTexture(DrawMode draw_mode, | 43 void UpdateHudTexture(DrawMode draw_mode, |
45 ResourceProvider* resource_provider); | 44 ResourceProvider* resource_provider); |
46 | 45 |
47 void ReleaseResources() override; | 46 void ReleaseResources() override; |
48 | 47 |
49 bool IsAnimatingHUDContents() const { return fade_step_ > 0; } | 48 bool IsAnimatingHUDContents() const { return fade_step_ > 0; } |
50 | 49 |
51 private: | 50 private: |
52 class Graph { | 51 class Graph { |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 std::vector<DebugRect> paint_rects_; | 137 std::vector<DebugRect> paint_rects_; |
139 | 138 |
140 base::TimeTicks time_of_last_graph_update_; | 139 base::TimeTicks time_of_last_graph_update_; |
141 | 140 |
142 DISALLOW_COPY_AND_ASSIGN(HeadsUpDisplayLayerImpl); | 141 DISALLOW_COPY_AND_ASSIGN(HeadsUpDisplayLayerImpl); |
143 }; | 142 }; |
144 | 143 |
145 } // namespace cc | 144 } // namespace cc |
146 | 145 |
147 #endif // CC_LAYERS_HEADS_UP_DISPLAY_LAYER_IMPL_H_ | 146 #endif // CC_LAYERS_HEADS_UP_DISPLAY_LAYER_IMPL_H_ |
OLD | NEW |