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_H_ | 5 #ifndef CC_LAYERS_HEADS_UP_DISPLAY_LAYER_H_ |
6 #define CC_LAYERS_HEADS_UP_DISPLAY_LAYER_H_ | 6 #define CC_LAYERS_HEADS_UP_DISPLAY_LAYER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "cc/base/cc_export.h" | 12 #include "cc/base/cc_export.h" |
13 #include "cc/layers/layer.h" | 13 #include "cc/layers/layer.h" |
14 | 14 |
15 namespace cc { | 15 namespace cc { |
16 | 16 |
| 17 namespace proto { |
| 18 class LayerNode; |
| 19 } // namespace proto |
| 20 |
17 class CC_EXPORT HeadsUpDisplayLayer : public Layer { | 21 class CC_EXPORT HeadsUpDisplayLayer : public Layer { |
18 public: | 22 public: |
19 static scoped_refptr<HeadsUpDisplayLayer> Create( | 23 static scoped_refptr<HeadsUpDisplayLayer> Create( |
20 const LayerSettings& settings); | 24 const LayerSettings& settings); |
21 | 25 |
22 void PrepareForCalculateDrawProperties( | 26 void PrepareForCalculateDrawProperties( |
23 const gfx::Size& device_viewport, float device_scale_factor); | 27 const gfx::Size& device_viewport, float device_scale_factor); |
24 | 28 |
25 scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) override; | 29 scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) override; |
26 | 30 |
| 31 void SetTypeForProtoSerialization(proto::LayerNode* proto) const override; |
| 32 |
27 protected: | 33 protected: |
28 explicit HeadsUpDisplayLayer(const LayerSettings& settings); | 34 explicit HeadsUpDisplayLayer(const LayerSettings& settings); |
29 bool HasDrawableContent() const override; | 35 bool HasDrawableContent() const override; |
30 | 36 |
31 private: | 37 private: |
32 ~HeadsUpDisplayLayer() override; | 38 ~HeadsUpDisplayLayer() override; |
33 | 39 |
34 DISALLOW_COPY_AND_ASSIGN(HeadsUpDisplayLayer); | 40 DISALLOW_COPY_AND_ASSIGN(HeadsUpDisplayLayer); |
35 }; | 41 }; |
36 | 42 |
37 } // namespace cc | 43 } // namespace cc |
38 | 44 |
39 #endif // CC_LAYERS_HEADS_UP_DISPLAY_LAYER_H_ | 45 #endif // CC_LAYERS_HEADS_UP_DISPLAY_LAYER_H_ |
OLD | NEW |