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

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

Issue 1539203002: Switch to standard integer types in cc/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more includes Created 5 years 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_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CC_LAYERS_HEADS_UP_DISPLAY_LAYER_H_ 5 #ifndef CC_LAYERS_HEADS_UP_DISPLAY_LAYER_H_
6 #define CC_LAYERS_HEADS_UP_DISPLAY_LAYER_H_ 6 #define CC_LAYERS_HEADS_UP_DISPLAY_LAYER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/macros.h"
10 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
11 #include "cc/base/cc_export.h" 12 #include "cc/base/cc_export.h"
12 #include "cc/layers/layer.h" 13 #include "cc/layers/layer.h"
13 14
14 namespace cc { 15 namespace cc {
15 16
16 class CC_EXPORT HeadsUpDisplayLayer : public Layer { 17 class CC_EXPORT HeadsUpDisplayLayer : public Layer {
17 public: 18 public:
18 static scoped_refptr<HeadsUpDisplayLayer> Create( 19 static scoped_refptr<HeadsUpDisplayLayer> Create(
19 const LayerSettings& settings); 20 const LayerSettings& settings);
20 21
21 void PrepareForCalculateDrawProperties( 22 void PrepareForCalculateDrawProperties(
22 const gfx::Size& device_viewport, float device_scale_factor); 23 const gfx::Size& device_viewport, float device_scale_factor);
23 24
24 scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) override; 25 scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) override;
25 26
26 protected: 27 protected:
27 explicit HeadsUpDisplayLayer(const LayerSettings& settings); 28 explicit HeadsUpDisplayLayer(const LayerSettings& settings);
28 bool HasDrawableContent() const override; 29 bool HasDrawableContent() const override;
29 30
30 private: 31 private:
31 ~HeadsUpDisplayLayer() override; 32 ~HeadsUpDisplayLayer() override;
32 33
33 DISALLOW_COPY_AND_ASSIGN(HeadsUpDisplayLayer); 34 DISALLOW_COPY_AND_ASSIGN(HeadsUpDisplayLayer);
34 }; 35 };
35 36
36 } // namespace cc 37 } // namespace cc
37 38
38 #endif // CC_LAYERS_HEADS_UP_DISPLAY_LAYER_H_ 39 #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_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698