summaryrefslogtreecommitdiffstats
path: root/content/renderer/media/webmediaplayer_params.cc
blob: ddcd21341a39b8a4fd7f657e0848ea6dbe3b5b22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2013 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 "content/renderer/media/webmediaplayer_params.h"

#include "media/base/audio_renderer_sink.h"

namespace content {

WebMediaPlayerParams::WebMediaPlayerParams(
    const base::Callback<void(const base::Closure&)>& defer_load_cb,
    const scoped_refptr<media::AudioRendererSink>& audio_renderer_sink)
    : defer_load_cb_(defer_load_cb),
      audio_renderer_sink_(audio_renderer_sink) {
}

WebMediaPlayerParams::~WebMediaPlayerParams() {}

}  // namespace content