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

Side by Side Diff: media/audio/audio_manager.h

Issue 11260002: Fix invalid bind usage during AudioManagerBase construction. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Gotta catch'em all. Created 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | media/audio/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_AUDIO_MANAGER_H_ 5 #ifndef MEDIA_AUDIO_AUDIO_MANAGER_H_
6 #define MEDIA_AUDIO_AUDIO_MANAGER_H_ 6 #define MEDIA_AUDIO_AUDIO_MANAGER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 virtual void OnDeviceChange() = 0; 120 virtual void OnDeviceChange() = 0;
121 }; 121 };
122 122
123 virtual void AddOutputDeviceChangeListener(AudioDeviceListener* listener) = 0; 123 virtual void AddOutputDeviceChangeListener(AudioDeviceListener* listener) = 0;
124 virtual void RemoveOutputDeviceChangeListener( 124 virtual void RemoveOutputDeviceChangeListener(
125 AudioDeviceListener* listener) = 0; 125 AudioDeviceListener* listener) = 0;
126 126
127 protected: 127 protected:
128 AudioManager(); 128 AudioManager();
129 129
130 // Called on the audio thread's message loop immediately after construction.
131 virtual void InitializeOnAudioThread() = 0;
132
130 private: 133 private:
131 DISALLOW_COPY_AND_ASSIGN(AudioManager); 134 DISALLOW_COPY_AND_ASSIGN(AudioManager);
132 }; 135 };
133 136
134 } // namespace media 137 } // namespace media
135 138
136 #endif // MEDIA_AUDIO_AUDIO_MANAGER_H_ 139 #endif // MEDIA_AUDIO_AUDIO_MANAGER_H_
OLDNEW
« no previous file with comments | « no previous file | media/audio/audio_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698