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
3 // found in the LICENSE file.
5 #ifndef CC_LAYERS_HEADS_UP_DISPLAY_LAYER_H_
6 #define CC_LAYERS_HEADS_UP_DISPLAY_LAYER_H_
10 #include "base/memory/scoped_ptr.h"
11 #include "cc/base/cc_export.h"
12 #include "cc/layers/layer.h"
16 class CC_EXPORT HeadsUpDisplayLayer
: public Layer
{
18 static scoped_refptr
<HeadsUpDisplayLayer
> Create(
19 const LayerSettings
& settings
);
21 void PrepareForCalculateDrawProperties(
22 const gfx::Size
& device_viewport
, float device_scale_factor
);
24 scoped_ptr
<LayerImpl
> CreateLayerImpl(LayerTreeImpl
* tree_impl
) override
;
27 explicit HeadsUpDisplayLayer(const LayerSettings
& settings
);
28 bool HasDrawableContent() const override
;
31 ~HeadsUpDisplayLayer() override
;
33 DISALLOW_COPY_AND_ASSIGN(HeadsUpDisplayLayer
);
38 #endif // CC_LAYERS_HEADS_UP_DISPLAY_LAYER_H_