Update V8 to version 4.7.56.
[chromium-blink-merge.git] / media / base / fake_output_device.h
blob87d19595c7c68b04031742df6e5b3d402c325e49
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
3 // found in the LICENSE file.
5 #ifndef MEDIA_AUDIO_FAKE_OUTPUT_DEVICE_H_
6 #define MEDIA_AUDIO_FAKE_OUTPUT_DEVICE_H_
8 #include <string>
10 #include "media/base/output_device.h"
12 namespace media {
14 class FakeOutputDevice : public OutputDevice {
15 public:
16 FakeOutputDevice();
17 ~FakeOutputDevice() override;
19 // OutputDevice implementation.
20 void SwitchOutputDevice(const std::string& device_id,
21 const GURL& security_origin,
22 const SwitchOutputDeviceCB& callback) override;
24 private:
25 DISALLOW_COPY_AND_ASSIGN(FakeOutputDevice);
28 } // namespace media
30 #endif // MEDIA_AUDIO_FAKE_OUTPUT_DEVICE_H_