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

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

Issue 135493002: Plumb debug name via debug info (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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
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/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
11 #include "cc/base/cc_export.h" 11 #include "cc/base/cc_export.h"
12 #include "cc/layers/contents_scaling_layer.h" 12 #include "cc/layers/contents_scaling_layer.h"
13 13
14 namespace cc { 14 namespace cc {
15 15
16 class CC_EXPORT HeadsUpDisplayLayer : public ContentsScalingLayer { 16 class CC_EXPORT HeadsUpDisplayLayer : public ContentsScalingLayer {
17 public: 17 public:
18 static scoped_refptr<HeadsUpDisplayLayer> Create(); 18 static scoped_refptr<HeadsUpDisplayLayer> Create();
19 19
20 void PrepareForCalculateDrawProperties( 20 void PrepareForCalculateDrawProperties(
21 gfx::Size device_viewport, float device_scale_factor); 21 gfx::Size device_viewport, float device_scale_factor);
22 22
23 virtual bool DrawsContent() const OVERRIDE; 23 virtual bool DrawsContent() const OVERRIDE;
24 24
25 virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl) 25 virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl)
26 OVERRIDE; 26 OVERRIDE;
27 27
28 virtual std::string DebugName() OVERRIDE;
29
30 protected: 28 protected:
31 HeadsUpDisplayLayer(); 29 HeadsUpDisplayLayer();
32 30
33 private: 31 private:
34 virtual ~HeadsUpDisplayLayer(); 32 virtual ~HeadsUpDisplayLayer();
35 33
36 DISALLOW_COPY_AND_ASSIGN(HeadsUpDisplayLayer); 34 DISALLOW_COPY_AND_ASSIGN(HeadsUpDisplayLayer);
37 }; 35 };
38 36
39 } // namespace cc 37 } // namespace cc
40 38
41 #endif // CC_LAYERS_HEADS_UP_DISPLAY_LAYER_H_ 39 #endif // CC_LAYERS_HEADS_UP_DISPLAY_LAYER_H_
OLDNEW
« no previous file with comments | « no previous file | cc/layers/heads_up_display_layer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698