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

Unified Diff: cc/io_surface_layer_impl.h

Issue 11189043: cc: Rename cc classes and members to match filenames (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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
Index: cc/io_surface_layer_impl.h
diff --git a/cc/io_surface_layer_impl.h b/cc/io_surface_layer_impl.h
index 238e27e4d28f3eedaf53246506c40370dd0a4c83..656cb15b68b72e4cd75c4f0199fbaa3d05331049 100644
--- a/cc/io_surface_layer_impl.h
+++ b/cc/io_surface_layer_impl.h
@@ -10,25 +10,25 @@
namespace cc {
-class CCIOSurfaceLayerImpl : public CCLayerImpl {
+class IOSurfaceLayerImpl : public LayerImpl {
public:
- static scoped_ptr<CCIOSurfaceLayerImpl> create(int id)
+ static scoped_ptr<IOSurfaceLayerImpl> create(int id)
{
- return make_scoped_ptr(new CCIOSurfaceLayerImpl(id));
+ return make_scoped_ptr(new IOSurfaceLayerImpl(id));
}
- virtual ~CCIOSurfaceLayerImpl();
+ virtual ~IOSurfaceLayerImpl();
void setIOSurfaceProperties(unsigned ioSurfaceId, const IntSize&);
- virtual void appendQuads(CCQuadSink&, CCAppendQuadsData&) OVERRIDE;
+ virtual void appendQuads(QuadSink&, AppendQuadsData&) OVERRIDE;
- virtual void willDraw(CCResourceProvider*) OVERRIDE;
+ virtual void willDraw(ResourceProvider*) OVERRIDE;
virtual void didLoseContext() OVERRIDE;
virtual void dumpLayerProperties(std::string*, int indent) const OVERRIDE;
private:
- explicit CCIOSurfaceLayerImpl(int);
+ explicit IOSurfaceLayerImpl(int);
virtual const char* layerTypeAsString() const OVERRIDE;
« cc/active_animation.h ('K') | « 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