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

Unified Diff: media/video/picture.cc

Issue 806413004: Plumb allow_overlay flag for video path into cc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: missed v4l2 Created 5 years, 11 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 | « media/video/picture.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/video/picture.cc
diff --git a/media/video/picture.cc b/media/video/picture.cc
index f0510131ea6bf4d7603c177feb150d27316d33d0..6b4c9279dfc1bf93a92f3da2e0902b00d2268973 100644
--- a/media/video/picture.cc
+++ b/media/video/picture.cc
@@ -24,10 +24,12 @@ PictureBuffer::PictureBuffer(int32 id,
Picture::Picture(int32 picture_buffer_id,
int32 bitstream_buffer_id,
- const gfx::Rect& visible_rect)
+ const gfx::Rect& visible_rect,
+ bool allow_overlay)
: picture_buffer_id_(picture_buffer_id),
bitstream_buffer_id_(bitstream_buffer_id),
- visible_rect_(visible_rect) {
+ visible_rect_(visible_rect),
+ allow_overlay_(allow_overlay) {
}
} // namespace media
« no previous file with comments | « media/video/picture.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698