BookmarkManager: Fix 'new folder text field size changes on clicking it' issue.
[chromium-blink-merge.git] / media / base / fake_output_device.h
blob1d9129cdda1e4241b764a4221707ded9fdfabebc
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_BASE_FAKE_OUTPUT_DEVICE_H_
6 #define MEDIA_BASE_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 url::Origin& security_origin,
22 const SwitchOutputDeviceCB& callback) override;
23 AudioParameters GetOutputParameters() override;
25 private:
26 DISALLOW_COPY_AND_ASSIGN(FakeOutputDevice);
29 } // namespace media
31 #endif // MEDIA_BASE_FAKE_OUTPUT_DEVICE_H_