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

Unified Diff: cc/nine_patch_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/layer_unittest.cc ('k') | cc/nine_patch_layer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/nine_patch_layer.h
diff --git a/cc/nine_patch_layer.h b/cc/nine_patch_layer.h
index 1a7a97ea25853d6273c4c436681b8926728e9b31..7116f6a4035f1a6a0bf297956578a47b71f45a93 100644
--- a/cc/nine_patch_layer.h
+++ b/cc/nine_patch_layer.h
@@ -20,13 +20,13 @@ class CC_EXPORT NinePatchLayer : public Layer {
public:
static scoped_refptr<NinePatchLayer> Create();
- virtual bool drawsContent() const OVERRIDE;
- virtual void setTexturePriorities(const PriorityCalculator& priority_calc)
+ virtual bool DrawsContent() const OVERRIDE;
+ virtual void SetTexturePriorities(const PriorityCalculator& priority_calc)
OVERRIDE;
- virtual void update(ResourceUpdateQueue& queue,
+ virtual void Update(ResourceUpdateQueue* queue,
const OcclusionTracker* occlusion,
RenderingStats* stats) OVERRIDE;
- virtual void pushPropertiesTo(LayerImpl* layer) OVERRIDE;
+ virtual void PushPropertiesTo(LayerImpl* layer) OVERRIDE;
// aperture is in the pixel space of the bitmap resource and refers to
// the center patch of the ninepatch (which is unused in this
@@ -39,7 +39,7 @@ class CC_EXPORT NinePatchLayer : public Layer {
private:
NinePatchLayer();
virtual ~NinePatchLayer();
- virtual scoped_ptr<LayerImpl> createLayerImpl(LayerTreeImpl* tree_impl)
+ virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl)
OVERRIDE;
void CreateUpdaterIfNeeded();
« no previous file with comments | « cc/layer_unittest.cc ('k') | cc/nine_patch_layer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698