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