Gallery.app: Bring the removed line back to show mosaic view.
[chromium-blink-merge.git] / cc / layers / heads_up_display_layer.h
blob4750fafc7ed34d832b500aa459377974d6bc34eb
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_
8 #include <string>
10 #include "base/memory/scoped_ptr.h"
11 #include "cc/base/cc_export.h"
12 #include "cc/layers/contents_scaling_layer.h"
14 namespace cc {
16 class CC_EXPORT HeadsUpDisplayLayer : public ContentsScalingLayer {
17 public:
18 static scoped_refptr<HeadsUpDisplayLayer> Create();
20 void PrepareForCalculateDrawProperties(
21 const gfx::Size& device_viewport, float device_scale_factor);
23 virtual bool DrawsContent() const OVERRIDE;
25 virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl)
26 OVERRIDE;
28 protected:
29 HeadsUpDisplayLayer();
31 private:
32 virtual ~HeadsUpDisplayLayer();
34 DISALLOW_COPY_AND_ASSIGN(HeadsUpDisplayLayer);
37 } // namespace cc
39 #endif // CC_LAYERS_HEADS_UP_DISPLAY_LAYER_H_