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

Side by Side Diff: chromecast/renderer/media/video_plane_proxy.h

Issue 814403002: [Chromecast] Add CmaMediaRendererFactory and IPC proxy components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
gunsch 2014/12/20 22:41:34 actually, probably leave out VideoPlaneProxy for n
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROMECAST_RENDERER_MEDIA_VIDEO_PLANE_PROXY_H_
6 #define CHROMECAST_RENDERER_MEDIA_VIDEO_PLANE_PROXY_H_
7
8 namespace gfx {
9 class QuadF;
10 }
11
12 namespace chromecast {
13 namespace cma {
gunsch 2014/12/20 22:41:35 chromecast::media
erickung1 2014/12/21 11:10:48 Done.
14
15 // Update the geometry of the video surface referred by |surface_id|.
16 // Function must run on the renderer IO thread.
17 void UpdateVideoSurface(int surface_id, const gfx::QuadF& quad);
18
19 } // namespace cma
20 } // namespace chromecast
21
22 #endif // CHROMECAST_RENDERER_MEDIA_VIDEO_PLANE_PROXY_H_
23
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698