OLD | NEW |
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2015 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 MEDIA_BASE_FAKE_OUTPUT_DEVICE_H_ | 5 #ifndef MEDIA_BASE_FAKE_OUTPUT_DEVICE_H_ |
6 #define MEDIA_BASE_FAKE_OUTPUT_DEVICE_H_ | 6 #define MEDIA_BASE_FAKE_OUTPUT_DEVICE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "media/base/output_device.h" | 11 #include "media/base/output_device.h" |
12 | 12 |
13 namespace media { | 13 namespace media { |
14 | 14 |
15 class FakeOutputDevice : public OutputDevice { | 15 class FakeOutputDevice : public OutputDevice { |
16 public: | 16 public: |
17 FakeOutputDevice(); | 17 FakeOutputDevice(); |
18 explicit FakeOutputDevice(OutputDeviceStatus status); | 18 explicit FakeOutputDevice(const std::string& device_id, |
| 19 OutputDeviceStatus status); |
| 20 FakeOutputDevice(const std::string& device_id, |
| 21 OutputDeviceStatus status, |
| 22 const AudioParameters& params); |
19 ~FakeOutputDevice() override; | 23 ~FakeOutputDevice() override; |
20 | 24 |
21 // OutputDevice implementation. | 25 // OutputDevice implementation. |
22 void SwitchOutputDevice(const std::string& device_id, | |
23 const url::Origin& security_origin, | |
24 const SwitchOutputDeviceCB& callback) override; | |
25 AudioParameters GetOutputParameters() override; | 26 AudioParameters GetOutputParameters() override; |
26 OutputDeviceStatus GetDeviceStatus() override; | 27 OutputDeviceStatus GetDeviceStatus() override; |
| 28 std::string GetDeviceId() override; |
27 | 29 |
28 private: | 30 private: |
29 OutputDeviceStatus device_status_; | 31 const std::string device_id_; |
| 32 const OutputDeviceStatus status_; |
| 33 const AudioParameters params_; |
30 DISALLOW_COPY_AND_ASSIGN(FakeOutputDevice); | 34 DISALLOW_COPY_AND_ASSIGN(FakeOutputDevice); |
31 }; | 35 }; |
32 | 36 |
33 } // namespace media | 37 } // namespace media |
34 | 38 |
35 #endif // MEDIA_BASE_FAKE_OUTPUT_DEVICE_H_ | 39 #endif // MEDIA_BASE_FAKE_OUTPUT_DEVICE_H_ |
OLD | NEW |