Add @VisibleForTesting to fix ChromePublic release build.
[chromium-blink-merge.git] / cc / layers / heads_up_display_layer.h
blobddc34f286d8583720d80bc3449c11c494a980ee2
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/layer.h"
14 namespace cc {
16 class CC_EXPORT HeadsUpDisplayLayer : public Layer {
17 public:
18 static scoped_refptr<HeadsUpDisplayLayer> Create();
20 void PrepareForCalculateDrawProperties(
21 const gfx::Size& device_viewport, float device_scale_factor);
23 scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) override;
25 protected:
26 HeadsUpDisplayLayer();
27 bool HasDrawableContent() const override;
29 private:
30 ~HeadsUpDisplayLayer() override;
32 DISALLOW_COPY_AND_ASSIGN(HeadsUpDisplayLayer);
35 } // namespace cc
37 #endif // CC_LAYERS_HEADS_UP_DISPLAY_LAYER_H_