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_DBUS_CRAS_AUDIO_CLIENT_H_ | 5 #ifndef CHROMEOS_DBUS_CRAS_AUDIO_CLIENT_H_ |
6 #define CHROMEOS_DBUS_CRAS_AUDIO_CLIENT_H_ | 6 #define CHROMEOS_DBUS_CRAS_AUDIO_CLIENT_H_ |
7 | 7 |
8 #include "base/callback.h" | 8 #include "base/callback.h" |
9 #include "base/observer_list.h" | 9 #include "base/observer_list.h" |
10 #include "chromeos/chromeos_export.h" | 10 #include "chromeos/chromeos_export.h" |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 virtual void RemoveActiveOutputNode(uint64 node_id) = 0; | 116 virtual void RemoveActiveOutputNode(uint64 node_id) = 0; |
117 | 117 |
118 // Creates the instance. | 118 // Creates the instance. |
119 static CrasAudioClient* Create(); | 119 static CrasAudioClient* Create(); |
120 | 120 |
121 protected: | 121 protected: |
122 // Create() should be used instead. | 122 // Create() should be used instead. |
123 CrasAudioClient(); | 123 CrasAudioClient(); |
124 | 124 |
125 private: | 125 private: |
126 | |
127 DISALLOW_COPY_AND_ASSIGN(CrasAudioClient); | 126 DISALLOW_COPY_AND_ASSIGN(CrasAudioClient); |
128 }; | 127 }; |
129 | 128 |
130 } // namespace chromeos | 129 } // namespace chromeos |
131 | 130 |
132 #endif // CHROMEOS_DBUS_CRAS_AUDIO_CLIENT_H_ | 131 #endif // CHROMEOS_DBUS_CRAS_AUDIO_CLIENT_H_ |
OLD | NEW |