| Index: webkit/media/crypto/ppapi/clear_key_cdm.cc
|
| diff --git a/webkit/media/crypto/ppapi/clear_key_cdm.cc b/webkit/media/crypto/ppapi/clear_key_cdm.cc
|
| index 93d19d5e8d0be78c1e9771c0d37034dc4f40fff6..caed97152794985a28c19fd3c3f1444887f6931a 100644
|
| --- a/webkit/media/crypto/ppapi/clear_key_cdm.cc
|
| +++ b/webkit/media/crypto/ppapi/clear_key_cdm.cc
|
| @@ -7,6 +7,7 @@
|
| #include <vector>
|
|
|
| #include "base/bind.h"
|
| +#include "base/debug/trace_event.h"
|
| #include "base/logging.h"
|
| #include "base/time.h"
|
| #include "media/base/decoder_buffer.h"
|
| @@ -381,6 +382,7 @@ cdm::Status ClearKeyCdm::DecryptAndDecodeFrame(
|
| const cdm::InputBuffer& encrypted_buffer,
|
| cdm::VideoFrame* decoded_frame) {
|
| DVLOG(1) << "DecryptAndDecodeFrame()";
|
| + TRACE_EVENT0("eme", "ClearKeyCdm::DecryptAndDecodeFrame");
|
|
|
| scoped_refptr<media::DecoderBuffer> buffer;
|
| cdm::Status status = DecryptToMediaDecoderBuffer(encrypted_buffer, &buffer);
|
|
|