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

Unified Diff: cc/video_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/video_layer.h
diff --git a/cc/video_layer.h b/cc/video_layer.h
index 9f415f2afe61188fc9e5510183ea99ddc4dad069..5d71fff8d4b26b363f57db30ca2343d49470319a 100644
--- a/cc/video_layer.h
+++ b/cc/video_layer.h
@@ -13,20 +13,20 @@ class WebVideoFrameProvider;
namespace cc {
-class CCVideoLayerImpl;
+class VideoLayerImpl;
// A Layer that contains a Video element.
-class VideoLayerChromium : public LayerChromium {
+class VideoLayer : public Layer {
public:
- static scoped_refptr<VideoLayerChromium> create(WebKit::WebVideoFrameProvider*);
+ static scoped_refptr<VideoLayer> create(WebKit::WebVideoFrameProvider*);
- virtual scoped_ptr<CCLayerImpl> createCCLayerImpl() OVERRIDE;
+ virtual scoped_ptr<LayerImpl> createLayerImpl() OVERRIDE;
private:
- explicit VideoLayerChromium(WebKit::WebVideoFrameProvider*);
- virtual ~VideoLayerChromium();
+ explicit VideoLayer(WebKit::WebVideoFrameProvider*);
+ virtual ~VideoLayer();
- // This pointer is only for passing to CCVideoLayerImpl's constructor. It should never be dereferenced by this class.
+ // This pointer is only for passing to VideoLayerImpl's constructor. It should never be dereferenced by this class.
WebKit::WebVideoFrameProvider* m_provider;
};

Powered by Google App Engine
This is Rietveld 408576698