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

Side by Side Diff: chromeos/audio/cras_audio_handler.h

Issue 2634263002: Pass camera facing info to audio client (Closed)
Patch Set: Moved to chrome_browser_main_chromeos.cc Created 3 years, 10 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 | « chromeos/DEPS ('k') | chromeos/audio/cras_audio_handler.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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 CHROMEOS_AUDIO_CRAS_AUDIO_HANDLER_H_ 5 #ifndef CHROMEOS_AUDIO_CRAS_AUDIO_HANDLER_H_
6 #define CHROMEOS_AUDIO_CRAS_AUDIO_HANDLER_H_ 6 #define CHROMEOS_AUDIO_CRAS_AUDIO_HANDLER_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 #include <queue> 10 #include <queue>
11 11
12 #include "base/macros.h" 12 #include "base/macros.h"
13 #include "base/memory/ref_counted.h" 13 #include "base/memory/ref_counted.h"
14 #include "base/memory/weak_ptr.h" 14 #include "base/memory/weak_ptr.h"
15 #include "base/observer_list.h" 15 #include "base/observer_list.h"
16 #include "base/timer/timer.h" 16 #include "base/timer/timer.h"
17 #include "chromeos/audio/audio_device.h" 17 #include "chromeos/audio/audio_device.h"
18 #include "chromeos/audio/audio_devices_pref_handler.h" 18 #include "chromeos/audio/audio_devices_pref_handler.h"
19 #include "chromeos/audio/audio_pref_observer.h" 19 #include "chromeos/audio/audio_pref_observer.h"
20 #include "chromeos/dbus/audio_node.h" 20 #include "chromeos/dbus/audio_node.h"
21 #include "chromeos/dbus/cras_audio_client.h" 21 #include "chromeos/dbus/cras_audio_client.h"
22 #include "chromeos/dbus/session_manager_client.h" 22 #include "chromeos/dbus/session_manager_client.h"
23 #include "chromeos/dbus/volume_state.h" 23 #include "chromeos/dbus/volume_state.h"
24 #include "media/base/video_facing.h"
24 25
25 namespace chromeos { 26 namespace chromeos {
26 27
27 class AudioDevicesPrefHandler; 28 class AudioDevicesPrefHandler;
28 29
29 class CHROMEOS_EXPORT CrasAudioHandler : public CrasAudioClient::Observer, 30 class CHROMEOS_EXPORT CrasAudioHandler : public CrasAudioClient::Observer,
30 public AudioPrefObserver, 31 public AudioPrefObserver,
31 public SessionManagerClient::Observer { 32 public SessionManagerClient::Observer,
33 public media::VideoCaptureObserver {
32 public: 34 public:
33 typedef std::priority_queue<AudioDevice, 35 typedef std::
34 std::vector<AudioDevice>, 36 priority_queue<AudioDevice, std::vector<AudioDevice>, AudioDeviceCompare>
35 AudioDeviceCompare> AudioDevicePriorityQueue; 37 AudioDevicePriorityQueue;
36 typedef std::vector<uint64_t> NodeIdList; 38 typedef std::vector<uint64_t> NodeIdList;
37 39
38 // Volume change reasons that are not user-initiated. 40 // Volume change reasons that are not user-initiated.
39 enum AutomatedVolumeChangeReason { 41 enum AutomatedVolumeChangeReason {
40 // Indicates it is from initializing audio state. 42 // Indicates it is from initializing audio state.
41 VOLUME_CHANGE_INITIALIZING_AUDIO_STATE, 43 VOLUME_CHANGE_INITIALIZING_AUDIO_STATE,
42 44
43 // Indicates it is from restoring volume in maximimize mode screenshot. 45 // Indicates it is from restoring volume in maximimize mode screenshot.
44 VOLUME_CHANGE_MAXIMIZE_MODE_SCREENSHOT, 46 VOLUME_CHANGE_MAXIMIZE_MODE_SCREENSHOT,
45 }; 47 };
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 98
97 // Destroys the global instance. 99 // Destroys the global instance.
98 static void Shutdown(); 100 static void Shutdown();
99 101
100 // Returns true if the global instance is initialized. 102 // Returns true if the global instance is initialized.
101 static bool IsInitialized(); 103 static bool IsInitialized();
102 104
103 // Gets the global instance. Initialize must be called first. 105 // Gets the global instance. Initialize must be called first.
104 static CrasAudioHandler* Get(); 106 static CrasAudioHandler* Get();
105 107
108 // Overrides media::VideoCaptureObserver.
109 void OnVideoCaptureStarted(media::VideoFacingMode facing) override;
110 void OnVideoCaptureStopped(media::VideoFacingMode facing) override;
111
106 // Adds an audio observer. 112 // Adds an audio observer.
107 void AddAudioObserver(AudioObserver* observer); 113 void AddAudioObserver(AudioObserver* observer);
108 114
109 // Removes an audio observer. 115 // Removes an audio observer.
110 void RemoveAudioObserver(AudioObserver* observer); 116 void RemoveAudioObserver(AudioObserver* observer);
111 117
112 // Returns true if keyboard mic exists. 118 // Returns true if keyboard mic exists.
113 bool HasKeyboardMic(); 119 bool HasKeyboardMic();
114 120
115 // Returns true if audio output is muted for the system. 121 // Returns true if audio output is muted for the system.
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 uint64_t init_node_id_; 484 uint64_t init_node_id_;
479 485
480 base::WeakPtrFactory<CrasAudioHandler> weak_ptr_factory_; 486 base::WeakPtrFactory<CrasAudioHandler> weak_ptr_factory_;
481 487
482 DISALLOW_COPY_AND_ASSIGN(CrasAudioHandler); 488 DISALLOW_COPY_AND_ASSIGN(CrasAudioHandler);
483 }; 489 };
484 490
485 } // namespace chromeos 491 } // namespace chromeos
486 492
487 #endif // CHROMEOS_AUDIO_CRAS_AUDIO_HANDLER_H_ 493 #endif // CHROMEOS_AUDIO_CRAS_AUDIO_HANDLER_H_
OLDNEW
« no previous file with comments | « chromeos/DEPS ('k') | chromeos/audio/cras_audio_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698