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

Unified Diff: cc/picture_layer.h

Issue 12774006: cc: Chromify Layer and LayerImpl classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: MoreAndroidCompilings Created 7 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/picture_image_layer_impl.cc ('k') | cc/picture_layer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/picture_layer.h
diff --git a/cc/picture_layer.h b/cc/picture_layer.h
index ff756bcba9a49c535671cf9c34b701df70736c44..b13a95fed50d89cbdfc7e87dd498d63de4924ac8 100644
--- a/cc/picture_layer.h
+++ b/cc/picture_layer.h
@@ -19,22 +19,22 @@ struct RenderingStats;
class CC_EXPORT PictureLayer : public ContentsScalingLayer {
public:
- static scoped_refptr<PictureLayer> create(ContentLayerClient* client);
+ static scoped_refptr<PictureLayer> Create(ContentLayerClient* client);
void clearClient() { client_ = 0; }
// Implement Layer interface
- virtual bool drawsContent() const OVERRIDE;
- virtual scoped_ptr<LayerImpl> createLayerImpl(
+ virtual bool DrawsContent() const OVERRIDE;
+ virtual scoped_ptr<LayerImpl> CreateLayerImpl(
LayerTreeImpl* treeImpl) OVERRIDE;
- virtual void setLayerTreeHost(LayerTreeHost* host) OVERRIDE;
- virtual void pushPropertiesTo(LayerImpl* layer) OVERRIDE;
- virtual void setNeedsDisplayRect(const gfx::RectF& layerRect) OVERRIDE;
- virtual void update(
- ResourceUpdateQueue& queue,
+ virtual void SetLayerTreeHost(LayerTreeHost* host) OVERRIDE;
+ virtual void PushPropertiesTo(LayerImpl* layer) OVERRIDE;
+ virtual void SetNeedsDisplayRect(const gfx::RectF& layerRect) OVERRIDE;
+ virtual void Update(
+ ResourceUpdateQueue* queue,
const OcclusionTracker* occlusion,
RenderingStats* stats) OVERRIDE;
- virtual void setIsMask(bool is_mask) OVERRIDE;
+ virtual void SetIsMask(bool is_mask) OVERRIDE;
protected:
explicit PictureLayer(ContentLayerClient* client);
« no previous file with comments | « cc/picture_image_layer_impl.cc ('k') | cc/picture_layer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698