Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1088)

Unified Diff: media/mojo/clients/mojo_decryptor.cc

Issue 2411573002: media: Use new wrapper types for media mojo interfaces (Closed)
Patch Set: comments addressed Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/mojo/clients/mojo_decryptor.h ('k') | media/mojo/common/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/mojo/clients/mojo_decryptor.cc
diff --git a/media/mojo/clients/mojo_decryptor.cc b/media/mojo/clients/mojo_decryptor.cc
index 4aa09f4c41815f094edec155a92bfba69e5bb155..f9a437c85db1ada775aadbee457f9001c63b6e2e 100644
--- a/media/mojo/clients/mojo_decryptor.cc
+++ b/media/mojo/clients/mojo_decryptor.cc
@@ -198,7 +198,7 @@ void MojoDecryptor::OnBufferDecrypted(const DecryptCB& decrypt_cb,
void MojoDecryptor::OnAudioDecoded(
const AudioDecodeCB& audio_decode_cb,
mojom::Decryptor::Status status,
- mojo::Array<mojom::AudioBufferPtr> audio_buffers) {
+ std::vector<mojom::AudioBufferPtr> audio_buffers) {
DVLOG_IF(1, status != mojom::Decryptor::Status::SUCCESS)
<< __FUNCTION__ << "(" << status << ")";
DVLOG_IF(3, status == mojom::Decryptor::Status::SUCCESS) << __FUNCTION__;
« no previous file with comments | « media/mojo/clients/mojo_decryptor.h ('k') | media/mojo/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698