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

Side by Side Diff: content/renderer/media/webrtc/webrtc_audio_sink_adapter.h

Issue 633303002: Replace FINAL and OVERRIDE with their C++11 counterparts in content/renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_RENDERER_MEDIA_WEBRTC_WEBRTC_AUDIO_SINK_ADAPTER_H_ 5 #ifndef CONTENT_RENDERER_MEDIA_WEBRTC_WEBRTC_AUDIO_SINK_ADAPTER_H_
6 #define CONTENT_RENDERER_MEDIA_WEBRTC_WEBRTC_AUDIO_SINK_ADAPTER_H_ 6 #define CONTENT_RENDERER_MEDIA_WEBRTC_WEBRTC_AUDIO_SINK_ADAPTER_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "content/public/renderer/media_stream_audio_sink.h" 9 #include "content/public/renderer/media_stream_audio_sink.h"
10 10
(...skipping 14 matching lines...) Expand all
25 webrtc::AudioTrackSinkInterface* sink); 25 webrtc::AudioTrackSinkInterface* sink);
26 virtual ~WebRtcAudioSinkAdapter(); 26 virtual ~WebRtcAudioSinkAdapter();
27 27
28 bool IsEqual(const webrtc::AudioTrackSinkInterface* other) const; 28 bool IsEqual(const webrtc::AudioTrackSinkInterface* other) const;
29 29
30 private: 30 private:
31 // MediaStreamAudioSink implementation. 31 // MediaStreamAudioSink implementation.
32 virtual void OnData(const int16* audio_data, 32 virtual void OnData(const int16* audio_data,
33 int sample_rate, 33 int sample_rate,
34 int number_of_channels, 34 int number_of_channels,
35 int number_of_frames) OVERRIDE; 35 int number_of_frames) override;
36 virtual void OnSetFormat(const media::AudioParameters& params) OVERRIDE; 36 virtual void OnSetFormat(const media::AudioParameters& params) override;
37 37
38 webrtc::AudioTrackSinkInterface* const sink_; 38 webrtc::AudioTrackSinkInterface* const sink_;
39 39
40 DISALLOW_COPY_AND_ASSIGN(WebRtcAudioSinkAdapter); 40 DISALLOW_COPY_AND_ASSIGN(WebRtcAudioSinkAdapter);
41 }; 41 };
42 42
43 } // namespace content 43 } // namespace content
44 44
45 #endif // CONTENT_RENDERER_MEDIA_WEBRTC_WEBRTC_AUDIO_SINK_ADAPTER_H_ 45 #endif // CONTENT_RENDERER_MEDIA_WEBRTC_WEBRTC_AUDIO_SINK_ADAPTER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698