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

Unified Diff: cc/solid_color_layer.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/solid_color_layer.h
diff --git a/cc/solid_color_layer.h b/cc/solid_color_layer.h
index bc1ede94997e0c69110e666fe0eb94f57df80937..0f7396b5ad51c2b8a6694bac8908e651c82b14b5 100644
--- a/cc/solid_color_layer.h
+++ b/cc/solid_color_layer.h
@@ -12,17 +12,17 @@ namespace cc {
// A Layer that renders a solid color. The color is specified by using
// setBackgroundColor() on the base class.
-class SolidColorLayerChromium : public LayerChromium {
+class SolidColorLayer : public Layer {
public:
- static scoped_refptr<SolidColorLayerChromium> create();
+ static scoped_refptr<SolidColorLayer> create();
- virtual scoped_ptr<CCLayerImpl> createCCLayerImpl() OVERRIDE;
+ virtual scoped_ptr<LayerImpl> createLayerImpl() OVERRIDE;
protected:
- SolidColorLayerChromium();
+ SolidColorLayer();
private:
- virtual ~SolidColorLayerChromium();
+ virtual ~SolidColorLayer();
};
}

Powered by Google App Engine
This is Rietveld 408576698