blob: 91164294a5bbf84cc092b7f4bd670082ff296b83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
// Copyright 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CC_LAYERS_HEADS_UP_DISPLAY_LAYER_H_
#define CC_LAYERS_HEADS_UP_DISPLAY_LAYER_H_
#include <string>
#include "base/memory/scoped_ptr.h"
#include "cc/base/cc_export.h"
#include "cc/layers/contents_scaling_layer.h"
namespace cc {
class CC_EXPORT HeadsUpDisplayLayer : public ContentsScalingLayer {
public:
static scoped_refptr<HeadsUpDisplayLayer> Create();
void PrepareForCalculateDrawProperties(
gfx::Size device_viewport, float device_scale_factor);
virtual bool DrawsContent() const OVERRIDE;
virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl)
OVERRIDE;
protected:
HeadsUpDisplayLayer();
private:
virtual ~HeadsUpDisplayLayer();
DISALLOW_COPY_AND_ASSIGN(HeadsUpDisplayLayer);
};
} // namespace cc
#endif // CC_LAYERS_HEADS_UP_DISPLAY_LAYER_H_
|