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

Unified Diff: cc/content_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 | « android_webview/browser/browser_view_renderer_impl.cc ('k') | cc/content_layer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/content_layer.h
diff --git a/cc/content_layer.h b/cc/content_layer.h
index 7aa37e87f64bd49f6fff068be062552a136070b8..cbf731df371a4dbedba0fd3284ea5cae857c915e 100644
--- a/cc/content_layer.h
+++ b/cc/content_layer.h
@@ -19,7 +19,7 @@ class LayerUpdater;
class CC_EXPORT ContentLayerPainter : public LayerPainter {
public:
- static scoped_ptr<ContentLayerPainter> create(ContentLayerClient*);
+ static scoped_ptr<ContentLayerPainter> Create(ContentLayerClient*);
virtual void Paint(SkCanvas*, gfx::Rect contentRect, gfx::RectF* opaque) OVERRIDE;
@@ -34,16 +34,16 @@ private:
// A layer that renders its contents into an SkCanvas.
class CC_EXPORT ContentLayer : public TiledLayer {
public:
- static scoped_refptr<ContentLayer> create(ContentLayerClient*);
+ static scoped_refptr<ContentLayer> Create(ContentLayerClient*);
void clearClient() { m_client = 0; }
- virtual bool drawsContent() const OVERRIDE;
- virtual void setTexturePriorities(const PriorityCalculator&) OVERRIDE;
- virtual void update(ResourceUpdateQueue&, const OcclusionTracker*, RenderingStats*) OVERRIDE;
- virtual bool needMoreUpdates() OVERRIDE;
+ virtual bool DrawsContent() const OVERRIDE;
+ virtual void SetTexturePriorities(const PriorityCalculator&) OVERRIDE;
+ virtual void Update(ResourceUpdateQueue*, const OcclusionTracker*, RenderingStats*) OVERRIDE;
+ virtual bool NeedMoreUpdates() OVERRIDE;
- virtual void setContentsOpaque(bool) OVERRIDE;
+ virtual void SetContentsOpaque(bool) OVERRIDE;
protected:
explicit ContentLayer(ContentLayerClient*);
« no previous file with comments | « android_webview/browser/browser_view_renderer_impl.cc ('k') | cc/content_layer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698