Chromium Code Reviews| Index: media/audio/audio_manager_base.h |
| =================================================================== |
| --- media/audio/audio_manager_base.h (revision 189519) |
| +++ media/audio/audio_manager_base.h (working copy) |
| @@ -140,7 +140,11 @@ |
| // Called by Shutdown(). |
| void ShutdownOnAudioThread(); |
| +#if defined(OS_ANDROID) |
| void SetAudioMode(int mode); |
| + void RegisterHeadsetReceiver(); |
| + void UnregisterHeadsetReceiver(); |
| +#endif |
| // Counts the number of active input streams to find out if something else |
| // is currently recording in Chrome. |
| @@ -171,6 +175,11 @@ |
| // and GetMessageLoop() starts returning NULL. |
| scoped_refptr<base::MessageLoopProxy> message_loop_; |
| +#if defined(OS_ANDROID) |
| + // Java AudioManagerAndroid instance. |
|
Ami GONE FROM CHROMIUM
2013/03/21 21:26:21
s/Android// - the Java type doesn't have "Android"
leozwang1
2013/03/21 23:10:07
Done.
|
| + base::android::ScopedJavaGlobalRef<jobject> j_audio_manager_; |
| +#endif |
| + |
| DISALLOW_COPY_AND_ASSIGN(AudioManagerBase); |
| }; |