summaryrefslogtreecommitdiffstats
path: root/cc/video_layer.cc
blob: e8a9fad462be13c461fcbcf2add679bbddc60831 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Copyright 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "cc/video_layer.h"

#include "cc/video_layer_impl.h"

namespace cc {

scoped_refptr<VideoLayer> VideoLayer::create(
    WebKit::WebVideoFrameProvider* provider,
    const FrameUnwrapper& unwrapper)
{
    return make_scoped_refptr(new VideoLayer(provider, unwrapper));
}

VideoLayer::VideoLayer(WebKit::WebVideoFrameProvider* provider,
                       const FrameUnwrapper& unwrapper)
    : m_provider(provider)
    , m_unwrapper(unwrapper)
{
    DCHECK(m_provider);
}

VideoLayer::~VideoLayer()
{
}

scoped_ptr<LayerImpl> VideoLayer::createLayerImpl()
{
    return VideoLayerImpl::create(m_layerId, m_provider, m_unwrapper).PassAs<LayerImpl>();
}

}  // namespace cc