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

Side by Side Diff: webkit/compositor_bindings/web_to_ccvideo_frame_provider.h

Issue 12603013: Part 10 of cc/ directory shuffles: layers (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef WEBKIT_COMPOSITOR_BINDINGS_WEB_TO_CCVIDEO_FRAME_PROVIDER_H_ 5 #ifndef WEBKIT_COMPOSITOR_BINDINGS_WEB_TO_CCVIDEO_FRAME_PROVIDER_H_
6 #define WEBKIT_COMPOSITOR_BINDINGS_WEB_TO_CCVIDEO_FRAME_PROVIDER_H_ 6 #define WEBKIT_COMPOSITOR_BINDINGS_WEB_TO_CCVIDEO_FRAME_PROVIDER_H_
7 7
8 #include "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "cc/video_frame_provider.h" 10 #include "cc/layers/video_frame_provider.h"
11 11
12 namespace WebKit { 12 namespace WebKit {
13 class WebVideoFrame; 13 class WebVideoFrame;
14 class WebVideoFrameProvider; 14 class WebVideoFrameProvider;
15 } 15 }
16 16
17 namespace webkit { 17 namespace webkit {
18 18
19 class WebToCCVideoFrameProvider : public cc::VideoFrameProvider { 19 class WebToCCVideoFrameProvider : public cc::VideoFrameProvider {
20 public: 20 public:
(...skipping 12 matching lines...) Expand all
33 33
34 class ClientAdapter; 34 class ClientAdapter;
35 scoped_ptr<ClientAdapter> client_adapter_; 35 scoped_ptr<ClientAdapter> client_adapter_;
36 WebKit::WebVideoFrameProvider* web_provider_; 36 WebKit::WebVideoFrameProvider* web_provider_;
37 WebKit::WebVideoFrame* web_frame_; 37 WebKit::WebVideoFrame* web_frame_;
38 }; 38 };
39 39
40 } // namespace webkit 40 } // namespace webkit
41 41
42 #endif // WEBKIT_COMPOSITOR_BINDINGS_WEB_TO_CCVIDEO_FRAME_PROVIDER_H_ 42 #endif // WEBKIT_COMPOSITOR_BINDINGS_WEB_TO_CCVIDEO_FRAME_PROVIDER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698