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

Side by Side Diff: media/audio/mac/audio_manager_mac.h

Issue 10826174: Dead code elimination: scythe.chrome_functions:segment.path %media% edition, round 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « media/audio/linux/cras_output_unittest.cc ('k') | media/audio/mac/audio_manager_mac.cc » ('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_MAC_AUDIO_MANAGER_MAC_H_ 5 #ifndef MEDIA_AUDIO_MAC_AUDIO_MANAGER_MAC_H_
6 #define MEDIA_AUDIO_MAC_AUDIO_MANAGER_MAC_H_ 6 #define MEDIA_AUDIO_MAC_AUDIO_MANAGER_MAC_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "media/audio/audio_manager_base.h" 10 #include "media/audio/audio_manager_base.h"
11 11
12 namespace media { 12 namespace media {
13 13
14 // Mac OS X implementation of the AudioManager singleton. This class is internal 14 // Mac OS X implementation of the AudioManager singleton. This class is internal
15 // to the audio output and only internal users can call methods not exposed by 15 // to the audio output and only internal users can call methods not exposed by
16 // the AudioManager class. 16 // the AudioManager class.
17 class MEDIA_EXPORT AudioManagerMac : public AudioManagerBase { 17 class MEDIA_EXPORT AudioManagerMac : public AudioManagerBase {
18 public: 18 public:
19 AudioManagerMac(); 19 AudioManagerMac();
20 20
21 // Implementation of AudioManager. 21 // Implementation of AudioManager.
22 virtual bool HasAudioOutputDevices() OVERRIDE; 22 virtual bool HasAudioOutputDevices() OVERRIDE;
23 virtual bool HasAudioInputDevices() OVERRIDE; 23 virtual bool HasAudioInputDevices() OVERRIDE;
24 virtual void GetAudioInputDeviceNames(media::AudioDeviceNames* device_names) 24 virtual void GetAudioInputDeviceNames(media::AudioDeviceNames* device_names)
25 OVERRIDE; 25 OVERRIDE;
26 virtual void MuteAll() OVERRIDE;
27 virtual void UnMuteAll() OVERRIDE;
28 26
29 // Implementation of AudioManagerBase. 27 // Implementation of AudioManagerBase.
30 virtual AudioOutputStream* MakeLinearOutputStream( 28 virtual AudioOutputStream* MakeLinearOutputStream(
31 const AudioParameters& params) OVERRIDE; 29 const AudioParameters& params) OVERRIDE;
32 virtual AudioOutputStream* MakeLowLatencyOutputStream( 30 virtual AudioOutputStream* MakeLowLatencyOutputStream(
33 const AudioParameters& params) OVERRIDE; 31 const AudioParameters& params) OVERRIDE;
34 virtual AudioInputStream* MakeLinearInputStream( 32 virtual AudioInputStream* MakeLinearInputStream(
35 const AudioParameters& params, const std::string& device_id) OVERRIDE; 33 const AudioParameters& params, const std::string& device_id) OVERRIDE;
36 virtual AudioInputStream* MakeLowLatencyInputStream( 34 virtual AudioInputStream* MakeLowLatencyInputStream(
37 const AudioParameters& params, const std::string& device_id) OVERRIDE; 35 const AudioParameters& params, const std::string& device_id) OVERRIDE;
38 36
39 protected: 37 protected:
40 virtual ~AudioManagerMac(); 38 virtual ~AudioManagerMac();
41 39
42 private: 40 private:
43 DISALLOW_COPY_AND_ASSIGN(AudioManagerMac); 41 DISALLOW_COPY_AND_ASSIGN(AudioManagerMac);
44 }; 42 };
45 43
46 } // namespace media 44 } // namespace media
47 45
48 #endif // MEDIA_AUDIO_MAC_AUDIO_MANAGER_MAC_H_ 46 #endif // MEDIA_AUDIO_MAC_AUDIO_MANAGER_MAC_H_
OLDNEW
« no previous file with comments | « media/audio/linux/cras_output_unittest.cc ('k') | media/audio/mac/audio_manager_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698