| OLD | NEW |
| 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 | 24 |
| 25 class PrefRegistrySimple; | |
| 26 class PrefService; | |
| 27 | |
| 28 namespace chromeos { | 25 namespace chromeos { |
| 29 | 26 |
| 30 class AudioDevicesPrefHandler; | 27 class AudioDevicesPrefHandler; |
| 31 | 28 |
| 32 class CHROMEOS_EXPORT CrasAudioHandler : public CrasAudioClient::Observer, | 29 class CHROMEOS_EXPORT CrasAudioHandler : public CrasAudioClient::Observer, |
| 33 public AudioPrefObserver, | 30 public AudioPrefObserver, |
| 34 public SessionManagerClient::Observer { | 31 public SessionManagerClient::Observer { |
| 35 public: | 32 public: |
| 36 typedef std::priority_queue<AudioDevice, | 33 typedef std::priority_queue<AudioDevice, |
| 37 std::vector<AudioDevice>, | 34 std::vector<AudioDevice>, |
| (...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 uint64_t init_node_id_; | 461 uint64_t init_node_id_; |
| 465 | 462 |
| 466 base::WeakPtrFactory<CrasAudioHandler> weak_ptr_factory_; | 463 base::WeakPtrFactory<CrasAudioHandler> weak_ptr_factory_; |
| 467 | 464 |
| 468 DISALLOW_COPY_AND_ASSIGN(CrasAudioHandler); | 465 DISALLOW_COPY_AND_ASSIGN(CrasAudioHandler); |
| 469 }; | 466 }; |
| 470 | 467 |
| 471 } // namespace chromeos | 468 } // namespace chromeos |
| 472 | 469 |
| 473 #endif // CHROMEOS_AUDIO_CRAS_AUDIO_HANDLER_H_ | 470 #endif // CHROMEOS_AUDIO_CRAS_AUDIO_HANDLER_H_ |
| OLD | NEW |