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

Unified Diff: media/audio/test_audio_input_controller_factory.h

Issue 655713003: Standardize usage of virtual/override/final in media/ (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/audio/sounds/test_data.h ('k') | media/audio/virtual_audio_input_stream.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/audio/test_audio_input_controller_factory.h
diff --git a/media/audio/test_audio_input_controller_factory.h b/media/audio/test_audio_input_controller_factory.h
index c72a25fd540e412e77a5c89914d1f5339264e997..e9555abd29888d01398d99924d60dc201081ba18 100644
--- a/media/audio/test_audio_input_controller_factory.h
+++ b/media/audio/test_audio_input_controller_factory.h
@@ -64,17 +64,17 @@ class TestAudioInputController : public AudioInputController {
EventHandler* event_handler() const { return event_handler_; }
// Notifies the TestAudioControllerOpened() event to the delegate (if any).
- virtual void Record() override;
+ void Record() override;
// Ensure that the closure is run on the audio-manager thread.
- virtual void Close(const base::Closure& closed_task) override;
+ void Close(const base::Closure& closed_task) override;
const AudioParameters& audio_parameters() const {
return audio_parameters_;
}
protected:
- virtual ~TestAudioInputController();
+ ~TestAudioInputController() override;
private:
AudioParameters audio_parameters_;
@@ -94,10 +94,10 @@ typedef TestAudioInputController::Delegate TestAudioInputControllerDelegate;
class TestAudioInputControllerFactory : public AudioInputController::Factory {
public:
TestAudioInputControllerFactory();
- virtual ~TestAudioInputControllerFactory();
+ ~TestAudioInputControllerFactory() override;
// AudioInputController::Factory methods.
- virtual AudioInputController* Create(
+ AudioInputController* Create(
AudioManager* audio_manager,
AudioInputController::EventHandler* event_handler,
AudioParameters params,
« no previous file with comments | « media/audio/sounds/test_data.h ('k') | media/audio/virtual_audio_input_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698