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

Unified Diff: cc/video_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/video_layer.cc ('k') | cc/video_layer_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/video_layer_impl.h
diff --git a/cc/video_layer_impl.h b/cc/video_layer_impl.h
index c99151c4dae5bffc7672bc0142f31e9362658cd8..e1db0dd7d7cecab95a3a18f32a0c6636180cd962 100644
--- a/cc/video_layer_impl.h
+++ b/cc/video_layer_impl.h
@@ -25,17 +25,18 @@ class VideoFrameProviderClientImpl;
class CC_EXPORT VideoLayerImpl : public LayerImpl {
public:
- static scoped_ptr<VideoLayerImpl> create(LayerTreeImpl* treeImpl, int id, VideoFrameProvider* provider);
+ static scoped_ptr<VideoLayerImpl> Create(LayerTreeImpl* treeImpl, int id, VideoFrameProvider* provider);
virtual ~VideoLayerImpl();
// LayerImpl implementation.
- 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 didBecomeActive() OVERRIDE;
- virtual void didLoseOutputSurface() OVERRIDE;
+ virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl*) OVERRIDE;
+ virtual void PushPropertiesTo(LayerImpl*) OVERRIDE;
+ virtual void WillDraw(ResourceProvider*) OVERRIDE;
+ virtual void AppendQuads(QuadSink* quad_sink,
+ AppendQuadsData* append_quads_data) OVERRIDE;
+ virtual void DidDraw(ResourceProvider*) OVERRIDE;
+ virtual void DidBecomeActive() OVERRIDE;
+ virtual void DidLoseOutputSurface() OVERRIDE;
void setNeedsRedraw();
@@ -55,7 +56,7 @@ public:
private:
VideoLayerImpl(LayerTreeImpl*, int);
- virtual const char* layerTypeAsString() const OVERRIDE;
+ virtual const char* LayerTypeAsString() const OVERRIDE;
void willDrawInternal(ResourceProvider*);
bool allocatePlaneData(ResourceProvider*);
« no previous file with comments | « cc/video_layer.cc ('k') | cc/video_layer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698