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

Side by Side Diff: media/audio/virtual_audio_output_stream.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 unified diff | Download patch
« no previous file with comments | « media/audio/virtual_audio_input_stream_unittest.cc ('k') | media/base/audio_buffer_converter.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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 MEDIA_AUDIO_VIRTUAL_AUDIO_OUTPUT_STREAM_H_ 5 #ifndef MEDIA_AUDIO_VIRTUAL_AUDIO_OUTPUT_STREAM_H_
6 #define MEDIA_AUDIO_VIRTUAL_AUDIO_OUTPUT_STREAM_H_ 6 #define MEDIA_AUDIO_VIRTUAL_AUDIO_OUTPUT_STREAM_H_
7 7
8 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "base/threading/thread_checker.h" 9 #include "base/threading/thread_checker.h"
10 #include "media/audio/audio_io.h" 10 #include "media/audio/audio_io.h"
(...skipping 16 matching lines...) Expand all
27 // Callback invoked just after VirtualAudioOutputStream is closed. 27 // Callback invoked just after VirtualAudioOutputStream is closed.
28 typedef base::Callback<void(VirtualAudioOutputStream* vaos)> 28 typedef base::Callback<void(VirtualAudioOutputStream* vaos)>
29 AfterCloseCallback; 29 AfterCloseCallback;
30 30
31 // Construct an audio loopback pathway to the given |target| (not owned). 31 // Construct an audio loopback pathway to the given |target| (not owned).
32 // |target| must outlive this instance. 32 // |target| must outlive this instance.
33 VirtualAudioOutputStream(const AudioParameters& params, 33 VirtualAudioOutputStream(const AudioParameters& params,
34 VirtualAudioInputStream* target, 34 VirtualAudioInputStream* target,
35 const AfterCloseCallback& after_close_cb); 35 const AfterCloseCallback& after_close_cb);
36 36
37 virtual ~VirtualAudioOutputStream(); 37 ~VirtualAudioOutputStream() override;
38 38
39 // AudioOutputStream: 39 // AudioOutputStream:
40 virtual bool Open() override; 40 bool Open() override;
41 virtual void Start(AudioSourceCallback* callback) override; 41 void Start(AudioSourceCallback* callback) override;
42 virtual void Stop() override; 42 void Stop() override;
43 virtual void SetVolume(double volume) override; 43 void SetVolume(double volume) override;
44 virtual void GetVolume(double* volume) override; 44 void GetVolume(double* volume) override;
45 virtual void Close() override; 45 void Close() override;
46 46
47 private: 47 private:
48 // AudioConverter::InputCallback: 48 // AudioConverter::InputCallback:
49 virtual double ProvideInput(AudioBus* audio_bus, 49 double ProvideInput(AudioBus* audio_bus,
50 base::TimeDelta buffer_delay) override; 50 base::TimeDelta buffer_delay) override;
51 51
52 const AudioParameters params_; 52 const AudioParameters params_;
53 // Pointer to the VirtualAudioInputStream to attach to when Start() is called. 53 // Pointer to the VirtualAudioInputStream to attach to when Start() is called.
54 // This pointer should always be valid because VirtualAudioInputStream should 54 // This pointer should always be valid because VirtualAudioInputStream should
55 // outlive this class. 55 // outlive this class.
56 VirtualAudioInputStream* const target_input_stream_; 56 VirtualAudioInputStream* const target_input_stream_;
57 57
58 AfterCloseCallback after_close_cb_; 58 AfterCloseCallback after_close_cb_;
59 59
60 AudioSourceCallback* callback_; 60 AudioSourceCallback* callback_;
61 double volume_; 61 double volume_;
62 62
63 base::ThreadChecker thread_checker_; 63 base::ThreadChecker thread_checker_;
64 64
65 DISALLOW_COPY_AND_ASSIGN(VirtualAudioOutputStream); 65 DISALLOW_COPY_AND_ASSIGN(VirtualAudioOutputStream);
66 }; 66 };
67 67
68 } // namespace media 68 } // namespace media
69 69
70 #endif // MEDIA_AUDIO_VIRTUAL_AUDIO_OUTPUT_STREAM_H_ 70 #endif // MEDIA_AUDIO_VIRTUAL_AUDIO_OUTPUT_STREAM_H_
OLDNEW
« no previous file with comments | « media/audio/virtual_audio_input_stream_unittest.cc ('k') | media/base/audio_buffer_converter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698