Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Side by Side Diff: cc/layers/heads_up_display_layer.h

Issue 1057283003: Remove parts of //cc we aren't using (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « cc/layers/draw_properties.h ('k') | cc/layers/heads_up_display_layer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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.
4
5 #ifndef CC_LAYERS_HEADS_UP_DISPLAY_LAYER_H_
6 #define CC_LAYERS_HEADS_UP_DISPLAY_LAYER_H_
7
8 #include <string>
9
10 #include "base/memory/scoped_ptr.h"
11 #include "cc/base/cc_export.h"
12 #include "cc/layers/layer.h"
13
14 namespace cc {
15
16 class CC_EXPORT HeadsUpDisplayLayer : public Layer {
17 public:
18 static scoped_refptr<HeadsUpDisplayLayer> Create();
19
20 void PrepareForCalculateDrawProperties(
21 const gfx::Size& device_viewport, float device_scale_factor);
22
23 scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) override;
24
25 protected:
26 HeadsUpDisplayLayer();
27 bool HasDrawableContent() const override;
28
29 private:
30 ~HeadsUpDisplayLayer() override;
31
32 DISALLOW_COPY_AND_ASSIGN(HeadsUpDisplayLayer);
33 };
34
35 } // namespace cc
36
37 #endif // CC_LAYERS_HEADS_UP_DISPLAY_LAYER_H_
OLDNEW
« no previous file with comments | « cc/layers/draw_properties.h ('k') | cc/layers/heads_up_display_layer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698