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

Unified Diff: media/mojo/clients/mojo_audio_decoder.h

Issue 2330273002: media: Use associated interface for mojo AudioDecoderClient (Closed)
Patch Set: Created 4 years, 3 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 | « no previous file | media/mojo/clients/mojo_audio_decoder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/mojo/clients/mojo_audio_decoder.h
diff --git a/media/mojo/clients/mojo_audio_decoder.h b/media/mojo/clients/mojo_audio_decoder.h
index 546b8e7fcbf91a0263508eef48bd731d0ea3091f..14255aa88a0108e12ba4e71766211beaa08464cb 100644
--- a/media/mojo/clients/mojo_audio_decoder.h
+++ b/media/mojo/clients/mojo_audio_decoder.h
@@ -12,6 +12,7 @@
#include "media/base/audio_decoder.h"
#include "media/mojo/interfaces/audio_decoder.mojom.h"
#include "media/mojo/interfaces/media_types.mojom.h"
+#include "mojo/public/cpp/bindings/associated_binding.h"
#include "mojo/public/cpp/bindings/binding.h"
namespace base {
@@ -69,7 +70,7 @@ class MojoAudioDecoder : public AudioDecoder, public mojom::AudioDecoderClient {
std::unique_ptr<MojoDecoderBufferWriter> mojo_decoder_buffer_writer_;
// Binding for AudioDecoderClient, bound to the |task_runner_|.
- mojo::Binding<AudioDecoderClient> binding_;
+ mojo::AssociatedBinding<AudioDecoderClient> client_binding_;
// We call the following callbacks to pass the information to the pipeline.
// |output_cb_| is permanent while other three are called only once,
« no previous file with comments | « no previous file | media/mojo/clients/mojo_audio_decoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698