| Index: talk/app/webrtc/localaudiosource.h | 
| diff --git a/talk/app/webrtc/localaudiosource.h b/talk/app/webrtc/localaudiosource.h | 
| index 557745b8b832be9f56c1f0f624a9267e99d43a9c..5158eb1215c1c90b5e5ad8a4fcaaa36ddb80ea36 100644 | 
| --- a/talk/app/webrtc/localaudiosource.h | 
| +++ b/talk/app/webrtc/localaudiosource.h | 
| @@ -48,16 +48,17 @@ class LocalAudioSource : public Notifier<AudioSourceInterface> { | 
| const PeerConnectionFactoryInterface::Options& options, | 
| const MediaConstraintsInterface* constraints); | 
|  | 
| -  virtual SourceState state() const { return source_state_; } | 
| +  SourceState state() const override { return source_state_; } | 
| +  bool remote() const override { return false; } | 
| + | 
| virtual const cricket::AudioOptions& options() const { return options_; } | 
|  | 
| - protected: | 
| -  LocalAudioSource() | 
| -      : source_state_(kInitializing) { | 
| -  } | 
| +  void AddSink(AudioTrackSinkInterface* sink) override {} | 
| +  void RemoveSink(AudioTrackSinkInterface* sink) override {} | 
|  | 
| -  ~LocalAudioSource() { | 
| -  } | 
| + protected: | 
| +  LocalAudioSource() : source_state_(kInitializing) {} | 
| +  ~LocalAudioSource() override {} | 
|  | 
| private: | 
| void Initialize(const PeerConnectionFactoryInterface::Options& options, | 
|  |