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

Side by Side Diff: media/audio/fake_audio_log_factory.cc

Issue 623263003: replace OVERRIDE and FINAL with override and 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 unified diff | Download patch
« no previous file with comments | « media/audio/fake_audio_log_factory.h ('k') | media/audio/fake_audio_manager.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #include "media/audio/fake_audio_log_factory.h" 5 #include "media/audio/fake_audio_log_factory.h"
6 6
7 namespace media { 7 namespace media {
8 8
9 class FakeAudioLogImpl : public AudioLog { 9 class FakeAudioLogImpl : public AudioLog {
10 public: 10 public:
11 FakeAudioLogImpl() {} 11 FakeAudioLogImpl() {}
12 virtual ~FakeAudioLogImpl() {} 12 virtual ~FakeAudioLogImpl() {}
13 virtual void OnCreated(int component_id, 13 virtual void OnCreated(int component_id,
14 const media::AudioParameters& params, 14 const media::AudioParameters& params,
15 const std::string& device_id) OVERRIDE {} 15 const std::string& device_id) override {}
16 virtual void OnStarted(int component_id) OVERRIDE {} 16 virtual void OnStarted(int component_id) override {}
17 virtual void OnStopped(int component_id) OVERRIDE {} 17 virtual void OnStopped(int component_id) override {}
18 virtual void OnClosed(int component_id) OVERRIDE {} 18 virtual void OnClosed(int component_id) override {}
19 virtual void OnError(int component_id) OVERRIDE {} 19 virtual void OnError(int component_id) override {}
20 virtual void OnSetVolume(int component_id, double volume) OVERRIDE {} 20 virtual void OnSetVolume(int component_id, double volume) override {}
21 }; 21 };
22 22
23 FakeAudioLogFactory::FakeAudioLogFactory() {} 23 FakeAudioLogFactory::FakeAudioLogFactory() {}
24 FakeAudioLogFactory::~FakeAudioLogFactory() {} 24 FakeAudioLogFactory::~FakeAudioLogFactory() {}
25 25
26 scoped_ptr<AudioLog> FakeAudioLogFactory::CreateAudioLog( 26 scoped_ptr<AudioLog> FakeAudioLogFactory::CreateAudioLog(
27 AudioComponent component) { 27 AudioComponent component) {
28 return scoped_ptr<AudioLog>(new FakeAudioLogImpl()); 28 return scoped_ptr<AudioLog>(new FakeAudioLogImpl());
29 } 29 }
30 30
31 } // namespace media 31 } // namespace media
OLDNEW
« no previous file with comments | « media/audio/fake_audio_log_factory.h ('k') | media/audio/fake_audio_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698