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

Unified Diff: cc/io_surface_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/io_surface_layer.cc ('k') | cc/io_surface_layer_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/io_surface_layer_impl.h
diff --git a/cc/io_surface_layer_impl.h b/cc/io_surface_layer_impl.h
index 9d1e2c47ca5715e88fc9af22b05b4cbfc6f29681..87def4ab89360e94442e48831c0614ad716999a5 100644
--- a/cc/io_surface_layer_impl.h
+++ b/cc/io_surface_layer_impl.h
@@ -13,7 +13,7 @@ namespace cc {
class CC_EXPORT IOSurfaceLayerImpl : public LayerImpl {
public:
- static scoped_ptr<IOSurfaceLayerImpl> create(LayerTreeImpl* treeImpl, int id)
+ static scoped_ptr<IOSurfaceLayerImpl> Create(LayerTreeImpl* treeImpl, int id)
{
return make_scoped_ptr(new IOSurfaceLayerImpl(treeImpl, id));
}
@@ -21,20 +21,21 @@ public:
void setIOSurfaceProperties(unsigned ioSurfaceId, const gfx::Size&);
- virtual scoped_ptr<LayerImpl> createLayerImpl(LayerTreeImpl* treeImpl) OVERRIDE;
- virtual void pushPropertiesTo(LayerImpl*) OVERRIDE;
+ virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* treeImpl) OVERRIDE;
+ virtual void PushPropertiesTo(LayerImpl*) OVERRIDE;
- virtual void appendQuads(QuadSink&, AppendQuadsData&) OVERRIDE;
+ virtual void AppendQuads(QuadSink* quad_sink,
+ AppendQuadsData* append_quads_data) OVERRIDE;
- virtual void willDraw(ResourceProvider*) OVERRIDE;
- virtual void didLoseOutputSurface() OVERRIDE;
+ virtual void WillDraw(ResourceProvider*) OVERRIDE;
+ virtual void DidLoseOutputSurface() OVERRIDE;
- virtual void dumpLayerProperties(std::string*, int indent) const OVERRIDE;
+ virtual void DumpLayerProperties(std::string* str, int indent) const OVERRIDE;
private:
IOSurfaceLayerImpl(LayerTreeImpl* treeImpl, int id);
- virtual const char* layerTypeAsString() const OVERRIDE;
+ virtual const char* LayerTypeAsString() const OVERRIDE;
unsigned m_ioSurfaceId;
gfx::Size m_ioSurfaceSize;
« no previous file with comments | « cc/io_surface_layer.cc ('k') | cc/io_surface_layer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698