Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(135)

Side by Side Diff: media/base/fake_output_device.h

Issue 1809093003: Moving SwitchOutputDevice out of OutputDevice interface, eliminating OutputDevice (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « media/base/fake_audio_renderer_sink.cc ('k') | media/base/fake_output_device.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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.
4
5 #ifndef MEDIA_BASE_FAKE_OUTPUT_DEVICE_H_
6 #define MEDIA_BASE_FAKE_OUTPUT_DEVICE_H_
7
8 #include <string>
9
10 #include "base/macros.h"
11 #include "media/base/output_device.h"
12
13 namespace media {
14
15 class FakeOutputDevice : public OutputDevice {
16 public:
17 FakeOutputDevice();
18 explicit FakeOutputDevice(OutputDeviceStatus status);
19 ~FakeOutputDevice() override;
20
21 // 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 OutputDeviceStatus GetDeviceStatus() override;
27
28 private:
29 OutputDeviceStatus device_status_;
30 DISALLOW_COPY_AND_ASSIGN(FakeOutputDevice);
31 };
32
33 } // namespace media
34
35 #endif // MEDIA_BASE_FAKE_OUTPUT_DEVICE_H_
OLDNEW
« no previous file with comments | « media/base/fake_audio_renderer_sink.cc ('k') | media/base/fake_output_device.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698