Home | History | Annotate | Download | only in media
      1 // Copyright 2013 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.
      4 
      5 #include "content/renderer/media/webmediaplayer_params.h"
      6 
      7 #include "media/base/audio_renderer_sink.h"
      8 
      9 namespace content {
     10 
     11 WebMediaPlayerParams::WebMediaPlayerParams(
     12     const base::Callback<void(const base::Closure&)>& defer_load_cb,
     13     const scoped_refptr<media::AudioRendererSink>& audio_renderer_sink)
     14     : defer_load_cb_(defer_load_cb),
     15       audio_renderer_sink_(audio_renderer_sink) {
     16 }
     17 
     18 WebMediaPlayerParams::~WebMediaPlayerParams() {}
     19 
     20 }  // namespace content
     21