Make ServerBoundCertStore interface async, move SQLiteServerBoundCertStore load onto...
[chromium-blink-merge.git] / media / video / picture.cc
blob54e4a234073e534c211c2102f6b1638062ae84b2
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
3 // found in the LICENSE file.
5 #include "media/video/picture.h"
7 namespace media {
9 PictureBuffer::PictureBuffer(int32 id, gfx::Size size, uint32 texture_id)
10 : id_(id),
11 size_(size),
12 texture_id_(texture_id) {
15 Picture::Picture(int32 picture_buffer_id, int32 bitstream_buffer_id)
16 : picture_buffer_id_(picture_buffer_id),
17 bitstream_buffer_id_(bitstream_buffer_id) {
20 } // namespace media