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

Unified Diff: cc/nine_patch_layer_impl.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/nine_patch_layer.cc ('k') | cc/nine_patch_layer_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/nine_patch_layer_impl.h
diff --git a/cc/nine_patch_layer_impl.h b/cc/nine_patch_layer_impl.h
index d8f09781dede6f6094cbfdd29e310b270bdfcf3d..1553018345c64693fd2e81ea5997ec45d62c69d4 100644
--- a/cc/nine_patch_layer_impl.h
+++ b/cc/nine_patch_layer_impl.h
@@ -28,25 +28,25 @@ class CC_EXPORT NinePatchLayerImpl : public LayerImpl {
void SetResourceId(unsigned id) { resource_id_ = id; }
void SetLayout(gfx::Size image_bounds, gfx::Rect aperture);
- virtual scoped_ptr<LayerImpl> createLayerImpl(LayerTreeImpl* tree_impl)
+ virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl)
OVERRIDE;
- virtual void pushPropertiesTo(LayerImpl* layer) OVERRIDE;
+ virtual void PushPropertiesTo(LayerImpl* layer) OVERRIDE;
- virtual void willDraw(ResourceProvider* resource_provider) OVERRIDE;
- virtual void appendQuads(QuadSink& quad_sink,
- AppendQuadsData& append_quads_data) OVERRIDE;
- virtual void didDraw(ResourceProvider* FIXMENAME) OVERRIDE;
- virtual ResourceProvider::ResourceId contentsResourceId() const OVERRIDE;
- virtual void dumpLayerProperties(std::string* str, int indent) const OVERRIDE;
- virtual void didLoseOutputSurface() OVERRIDE;
+ virtual void WillDraw(ResourceProvider* resource_provider) OVERRIDE;
+ virtual void AppendQuads(QuadSink* quad_sink,
+ AppendQuadsData* append_quads_data) OVERRIDE;
+ virtual void DidDraw(ResourceProvider* FIXMENAME) OVERRIDE;
+ virtual ResourceProvider::ResourceId ContentsResourceId() const OVERRIDE;
+ virtual void DumpLayerProperties(std::string* str, int indent) const OVERRIDE;
+ virtual void DidLoseOutputSurface() OVERRIDE;
- virtual base::DictionaryValue* layerTreeAsJson() const OVERRIDE;
+ virtual base::DictionaryValue* LayerTreeAsJson() const OVERRIDE;
protected:
NinePatchLayerImpl(LayerTreeImpl* tree_impl, int id);
private:
- virtual const char* layerTypeAsString() const OVERRIDE;
+ virtual const char* LayerTypeAsString() const OVERRIDE;
// The size of the NinePatch bitmap in pixels.
gfx::Size image_bounds_;
« no previous file with comments | « cc/nine_patch_layer.cc ('k') | cc/nine_patch_layer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698