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_AUDIO_DEVICES_PREF_HANDLER_IMPL_H_ | 5 #ifndef CHROMEOS_AUDIO_AUDIO_DEVICES_PREF_HANDLER_IMPL_H_ |
6 #define CHROMEOS_AUDIO_AUDIO_DEVICES_PREF_HANDLER_IMPL_H_ | 6 #define CHROMEOS_AUDIO_AUDIO_DEVICES_PREF_HANDLER_IMPL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
| 10 #include "base/macros.h" |
10 #include "base/observer_list.h" | 11 #include "base/observer_list.h" |
11 #include "base/prefs/pref_change_registrar.h" | 12 #include "base/prefs/pref_change_registrar.h" |
12 #include "base/values.h" | 13 #include "base/values.h" |
13 #include "chromeos/audio/audio_devices_pref_handler.h" | 14 #include "chromeos/audio/audio_devices_pref_handler.h" |
14 #include "chromeos/chromeos_export.h" | 15 #include "chromeos/chromeos_export.h" |
15 | 16 |
16 class PrefRegistrySimple; | 17 class PrefRegistrySimple; |
17 class PrefService; | 18 class PrefService; |
18 | 19 |
19 namespace chromeos { | 20 namespace chromeos { |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 | 78 |
78 PrefChangeRegistrar pref_change_registrar_; | 79 PrefChangeRegistrar pref_change_registrar_; |
79 base::ObserverList<AudioPrefObserver> observers_; | 80 base::ObserverList<AudioPrefObserver> observers_; |
80 | 81 |
81 DISALLOW_COPY_AND_ASSIGN(AudioDevicesPrefHandlerImpl); | 82 DISALLOW_COPY_AND_ASSIGN(AudioDevicesPrefHandlerImpl); |
82 }; | 83 }; |
83 | 84 |
84 } // namespace chromeos | 85 } // namespace chromeos |
85 | 86 |
86 #endif // CHROMEOS_AUDIO_AUDIO_DEVICES_PREF_HANDLER_IMPL_H_ | 87 #endif // CHROMEOS_AUDIO_AUDIO_DEVICES_PREF_HANDLER_IMPL_H_ |
OLD | NEW |