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

Side by Side Diff: media/video/picture.cc

Issue 2598833002: Add SkColorSpace to gfx::ColorSpace (Closed)
Patch Set: Add tests Created 3 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 unified diff | Download patch
« no previous file with comments | « media/video/picture.h ('k') | remoting/codec/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #include "base/macros.h" 5 #include "base/macros.h"
6 #include "media/video/picture.h" 6 #include "media/video/picture.h"
7 7
8 namespace media { 8 namespace media {
9 9
10 PictureBuffer::PictureBuffer(int32_t id, const gfx::Size& size) 10 PictureBuffer::PictureBuffer(int32_t id, const gfx::Size& size)
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 bool allow_overlay) 63 bool allow_overlay)
64 : picture_buffer_id_(picture_buffer_id), 64 : picture_buffer_id_(picture_buffer_id),
65 bitstream_buffer_id_(bitstream_buffer_id), 65 bitstream_buffer_id_(bitstream_buffer_id),
66 visible_rect_(visible_rect), 66 visible_rect_(visible_rect),
67 color_space_(color_space), 67 color_space_(color_space),
68 allow_overlay_(allow_overlay), 68 allow_overlay_(allow_overlay),
69 size_changed_(false), 69 size_changed_(false),
70 surface_texture_(false), 70 surface_texture_(false),
71 wants_promotion_hint_(false) {} 71 wants_promotion_hint_(false) {}
72 72
73 Picture::Picture(const Picture& other) = default;
74
75 Picture::~Picture() = default;
76
73 } // namespace media 77 } // namespace media
OLDNEW
« no previous file with comments | « media/video/picture.h ('k') | remoting/codec/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698