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

Side by Side Diff: media/audio/mock_audio_manager.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/mac/audio_manager_mac.cc ('k') | media/audio/mock_audio_manager.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_MOCK_AUDIO_MANAGER_H_ 5 #ifndef MEDIA_AUDIO_MOCK_AUDIO_MANAGER_H_
6 #define MEDIA_AUDIO_MOCK_AUDIO_MANAGER_H_ 6 #define MEDIA_AUDIO_MOCK_AUDIO_MANAGER_H_
7 7
8 #include "media/audio/audio_manager.h" 8 #include "media/audio/audio_manager.h"
9 9
10 namespace media { 10 namespace media {
(...skipping 28 matching lines...) Expand all
39 virtual media::AudioOutputStream* MakeAudioOutputStream( 39 virtual media::AudioOutputStream* MakeAudioOutputStream(
40 const media::AudioParameters& params) OVERRIDE; 40 const media::AudioParameters& params) OVERRIDE;
41 41
42 virtual media::AudioOutputStream* MakeAudioOutputStreamProxy( 42 virtual media::AudioOutputStream* MakeAudioOutputStreamProxy(
43 const media::AudioParameters& params) OVERRIDE; 43 const media::AudioParameters& params) OVERRIDE;
44 44
45 virtual media::AudioInputStream* MakeAudioInputStream( 45 virtual media::AudioInputStream* MakeAudioInputStream(
46 const media::AudioParameters& params, 46 const media::AudioParameters& params,
47 const std::string& device_id) OVERRIDE; 47 const std::string& device_id) OVERRIDE;
48 48
49 virtual void MuteAll() OVERRIDE;
50
51 virtual void UnMuteAll() OVERRIDE;
52
53 virtual bool IsRecordingInProcess() OVERRIDE; 49 virtual bool IsRecordingInProcess() OVERRIDE;
54 50
55 virtual scoped_refptr<base::MessageLoopProxy> GetMessageLoop() OVERRIDE; 51 virtual scoped_refptr<base::MessageLoopProxy> GetMessageLoop() OVERRIDE;
56 52
57 virtual void Init() OVERRIDE; 53 virtual void Init() OVERRIDE;
58 54
59 private: 55 private:
60 virtual ~MockAudioManager(); 56 virtual ~MockAudioManager();
61 57
62 scoped_refptr<base::MessageLoopProxy> message_loop_proxy_; 58 scoped_refptr<base::MessageLoopProxy> message_loop_proxy_;
63 59
64 DISALLOW_COPY_AND_ASSIGN(MockAudioManager); 60 DISALLOW_COPY_AND_ASSIGN(MockAudioManager);
65 }; 61 };
66 62
67 } // namespace media. 63 } // namespace media.
68 64
69 #endif // MEDIA_AUDIO_MOCK_AUDIO_MANAGER_H_ 65 #endif // MEDIA_AUDIO_MOCK_AUDIO_MANAGER_H_
OLDNEW
« no previous file with comments | « media/audio/mac/audio_manager_mac.cc ('k') | media/audio/mock_audio_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698