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

Unified Diff: webkit/compositor_bindings/web_to_ccvideo_frame_provider.h

Issue 12496013: Move compositor bindings implementations out of WebKit::, fix style (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased 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
Index: webkit/compositor_bindings/web_to_ccvideo_frame_provider.h
diff --git a/webkit/compositor_bindings/web_to_ccvideo_frame_provider.h b/webkit/compositor_bindings/web_to_ccvideo_frame_provider.h
index 882288c9e2009f891b8a85c551dd91b378dfa37d..ec743df56791a46db5db01294169f1277ef841bc 100644
--- a/webkit/compositor_bindings/web_to_ccvideo_frame_provider.h
+++ b/webkit/compositor_bindings/web_to_ccvideo_frame_provider.h
@@ -23,7 +23,7 @@ class WebToCCVideoFrameProvider : public cc::VideoFrameProvider {
virtual ~WebToCCVideoFrameProvider();
// cc::VideoFrameProvider implementation.
- virtual void SetVideoFrameProviderClient(Client*) OVERRIDE;
+ virtual void SetVideoFrameProviderClient(Client* client) OVERRIDE;
virtual scoped_refptr<media::VideoFrame> GetCurrentFrame() OVERRIDE;
virtual void PutCurrentFrame(const scoped_refptr<media::VideoFrame>& frame)
OVERRIDE;
@@ -35,6 +35,8 @@ class WebToCCVideoFrameProvider : public cc::VideoFrameProvider {
scoped_ptr<ClientAdapter> client_adapter_;
WebKit::WebVideoFrameProvider* web_provider_;
WebKit::WebVideoFrame* web_frame_;
+
+ DISALLOW_COPY_AND_ASSIGN(WebToCCVideoFrameProvider);
};
} // namespace webkit

Powered by Google App Engine
This is Rietveld 408576698