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

Side by Side Diff: cc/content_layer.h

Issue 11270047: cc: Rename TextureUpdate to ResourceUpdate. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sort includes and forward declarations. Created 8 years, 1 month 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 | « cc/cc_tests.gyp ('k') | cc/content_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 2010 The Chromium Authors. All rights reserved. 1 // Copyright 2010 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 ContentLayerChromium_h 5 #ifndef ContentLayerChromium_h
6 #define ContentLayerChromium_h 6 #define ContentLayerChromium_h
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "cc/layer_painter.h" 9 #include "cc/layer_painter.h"
10 #include "cc/tiled_layer.h" 10 #include "cc/tiled_layer.h"
(...skipping 23 matching lines...) Expand all
34 34
35 // A layer that renders its contents into an SkCanvas. 35 // A layer that renders its contents into an SkCanvas.
36 class ContentLayer : public TiledLayer { 36 class ContentLayer : public TiledLayer {
37 public: 37 public:
38 static scoped_refptr<ContentLayer> create(ContentLayerClient*); 38 static scoped_refptr<ContentLayer> create(ContentLayerClient*);
39 39
40 void clearClient() { m_client = 0; } 40 void clearClient() { m_client = 0; }
41 41
42 virtual bool drawsContent() const OVERRIDE; 42 virtual bool drawsContent() const OVERRIDE;
43 virtual void setTexturePriorities(const PriorityCalculator&) OVERRIDE; 43 virtual void setTexturePriorities(const PriorityCalculator&) OVERRIDE;
44 virtual void update(TextureUpdateQueue&, const OcclusionTracker*, RenderingS tats&) OVERRIDE; 44 virtual void update(ResourceUpdateQueue&, const OcclusionTracker*, Rendering Stats&) OVERRIDE;
45 virtual bool needMoreUpdates() OVERRIDE; 45 virtual bool needMoreUpdates() OVERRIDE;
46 46
47 virtual void setContentsOpaque(bool) OVERRIDE; 47 virtual void setContentsOpaque(bool) OVERRIDE;
48 48
49 protected: 49 protected:
50 explicit ContentLayer(ContentLayerClient*); 50 explicit ContentLayer(ContentLayerClient*);
51 virtual ~ContentLayer(); 51 virtual ~ContentLayer();
52 52
53 private: 53 private:
54 virtual LayerUpdater* updater() const OVERRIDE; 54 virtual LayerUpdater* updater() const OVERRIDE;
55 virtual void createUpdaterIfNeeded() OVERRIDE; 55 virtual void createUpdaterIfNeeded() OVERRIDE;
56 56
57 ContentLayerClient* m_client; 57 ContentLayerClient* m_client;
58 scoped_refptr<LayerUpdater> m_updater; 58 scoped_refptr<LayerUpdater> m_updater;
59 }; 59 };
60 60
61 } 61 }
62 #endif 62 #endif
OLDNEW
« no previous file with comments | « cc/cc_tests.gyp ('k') | cc/content_layer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698