summaryrefslogtreecommitdiffstats
path: root/webkit/media/webmediaplayer_params.cc
blob: 6f013b6176502cd59232408fd4fad7c8237586f1 (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
// Copyright (c) 2012 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 "webkit/media/webmediaplayer_params.h"

#include "media/base/audio_renderer_sink.h"
#include "media/base/media_log.h"

namespace webkit_media {

WebMediaPlayerParams::WebMediaPlayerParams(
    const scoped_refptr<media::AudioRendererSink>& audio_renderer_sink,
    const scoped_refptr<media::GpuVideoDecoder::Factories>& gpu_factories,
    const scoped_refptr<media::MediaLog>& media_log)
    : audio_renderer_sink_(audio_renderer_sink),
      gpu_factories_(gpu_factories),
      media_log_(media_log) {
  DCHECK(media_log_);
}

WebMediaPlayerParams::~WebMediaPlayerParams() {}

}  // namespace webkit_media