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

Unified Diff: cc/texture_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/texture_layer.cc ('k') | cc/texture_layer_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/texture_layer_impl.h
diff --git a/cc/texture_layer_impl.h b/cc/texture_layer_impl.h
index 7351b6040639fceb976819b67d791dcfe657f732..afff310398c6728cb3812c8d32f9ffe865281766 100644
--- a/cc/texture_layer_impl.h
+++ b/cc/texture_layer_impl.h
@@ -15,23 +15,24 @@ namespace cc {
class CC_EXPORT TextureLayerImpl : public LayerImpl {
public:
- static scoped_ptr<TextureLayerImpl> create(LayerTreeImpl* treeImpl, int id, bool usesMailbox)
+ static scoped_ptr<TextureLayerImpl> Create(LayerTreeImpl* treeImpl, int id, bool usesMailbox)
{
return make_scoped_ptr(new TextureLayerImpl(treeImpl, id, usesMailbox));
}
virtual ~TextureLayerImpl();
- virtual scoped_ptr<LayerImpl> createLayerImpl(LayerTreeImpl*) OVERRIDE;
- virtual void pushPropertiesTo(LayerImpl*) OVERRIDE;
+ virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl*) OVERRIDE;
+ virtual void PushPropertiesTo(LayerImpl*) OVERRIDE;
- virtual void willDraw(ResourceProvider*) OVERRIDE;
- virtual void appendQuads(QuadSink&, AppendQuadsData&) OVERRIDE;
- virtual void didDraw(ResourceProvider*) OVERRIDE;
+ virtual void WillDraw(ResourceProvider*) OVERRIDE;
+ virtual void AppendQuads(QuadSink* quad_sink,
+ AppendQuadsData* append_quads_data) OVERRIDE;
+ virtual void DidDraw(ResourceProvider*) OVERRIDE;
- virtual void didLoseOutputSurface() OVERRIDE;
+ virtual void DidLoseOutputSurface() OVERRIDE;
- virtual void dumpLayerProperties(std::string*, int indent) const OVERRIDE;
- virtual void didBecomeActive() OVERRIDE;
+ virtual void DumpLayerProperties(std::string*, int indent) const OVERRIDE;
+ virtual void DidBecomeActive() OVERRIDE;
unsigned textureId() const { return m_textureId; }
void setTextureId(unsigned id) { m_textureId = id; }
@@ -44,14 +45,14 @@ public:
// | |
// 0--3
void setVertexOpacity(const float vertexOpacity[4]);
- virtual bool canClipSelf() const OVERRIDE;
+ virtual bool CanClipSelf() const OVERRIDE;
void setTextureMailbox(const TextureMailbox&);
private:
TextureLayerImpl(LayerTreeImpl* treeImpl, int id, bool usesMailbox);
- virtual const char* layerTypeAsString() const OVERRIDE;
+ virtual const char* LayerTypeAsString() const OVERRIDE;
void freeTextureMailbox();
unsigned m_textureId;
« no previous file with comments | « cc/texture_layer.cc ('k') | cc/texture_layer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698