| Index: content/renderer/pepper/content_decryptor_delegate.cc
|
| ===================================================================
|
| --- content/renderer/pepper/content_decryptor_delegate.cc (revision 213482)
|
| +++ content/renderer/pepper/content_decryptor_delegate.cc (working copy)
|
| @@ -2,12 +2,13 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "webkit/plugins/ppapi/content_decryptor_delegate.h"
|
| +#include "content/renderer/pepper/content_decryptor_delegate.h"
|
|
|
| #include "base/callback_helpers.h"
|
| #include "base/debug/trace_event.h"
|
| #include "base/message_loop/message_loop_proxy.h"
|
| #include "base/safe_numerics.h"
|
| +#include "content/renderer/pepper/ppb_buffer_impl.h"
|
| #include "media/base/audio_buffer.h"
|
| #include "media/base/audio_decoder_config.h"
|
| #include "media/base/bind_to_loop.h"
|
| @@ -24,7 +25,6 @@
|
| #include "ppapi/thunk/enter.h"
|
| #include "ppapi/thunk/ppb_buffer_api.h"
|
| #include "ui/gfx/rect.h"
|
| -#include "webkit/plugins/ppapi/ppb_buffer_impl.h"
|
|
|
| using ppapi::ArrayBufferVar;
|
| using ppapi::PpapiGlobals;
|
| @@ -241,6 +241,9 @@
|
| audio_bytes_per_frame_(0) {
|
| }
|
|
|
| +ContentDecryptorDelegate::~ContentDecryptorDelegate() {
|
| +}
|
| +
|
| void ContentDecryptorDelegate::Initialize(const std::string& key_system) {
|
| // TODO(ddorwin): Add an Initialize method to PPP_ContentDecryptor_Private.
|
| DCHECK(!key_system.empty());
|
|
|