Fix build error with flag "--build-chrome":
gen/media/mojo/mojom/audio_input_stream.mojom.h:151:16: note: unimplemented pure virtual method 'OnMediaStateChanged' in 'CapturedAudioInput'
[ 340s] 151 | virtual void OnMediaStateChanged(uint32_t previous, uint32_t current) = 0;
Change-Id: I2dcf7941f1f40e3ccd230a73bff10c030b1b3850
Signed-off-by: zhishun.zhou <zhishun.zhou@samsung.com>
// media::mojom::AudioInputStreamClient implementation.
void OnError(media::mojom::InputStreamErrorCode code) override;
void OnMutedStateChanged(bool is_muted) override;
+#if BUILDFLAG(IS_TIZEN_TV)
+ void OnMediaStateChanged(uint32_t previous, uint32_t current) override {}
+#endif
SEQUENCE_CHECKER(sequence_checker_);