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

Side by Side Diff: extensions/renderer/api/display_source/wifi_display/wifi_display_media_manager.h

Issue 1698473004: [chrome.displaySource] Use WDS for Wi-Fi Display implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments from Antony + rebase + GN build fix Created 4 years, 10 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
OLDNEW
(Empty)
1 // Copyright 2016 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 EXTENSIONS_BROWSER_API_DISPLAY_SOURCE_WIFI_DISPLAY_WIFI_DISPLAY_MEDIA_MA NAGER_H_
6 #define EXTENSIONS_BROWSER_API_DISPLAY_SOURCE_WIFI_DISPLAY_WIFI_DISPLAY_MEDIA_MA NAGER_H_
7
8 #include "base/macros.h"
9 #include "third_party/wds/src/libwds/public/media_manager.h"
10
11 namespace extensions {
12
13 class WiFiDisplayMediaManager : public wds::SourceMediaManager {
14 public:
15 WiFiDisplayMediaManager();
16 ~WiFiDisplayMediaManager() override;
17
18 private:
19 // wds::SourceMediaManager overrides.
20 void Play() override;
21
22 void Pause() override;
23 void Teardown() override;
24 bool IsPaused() const override;
25 wds::SessionType GetSessionType() const override;
26 void SetSinkRtpPorts(int port1, int port2) override;
27 std::pair<int,int> GetSinkRtpPorts() const override;
28 int GetLocalRtpPort() const override;
29
30 bool InitOptimalVideoFormat(
31 const wds::NativeVideoFormat& sink_native_format,
32 const std::vector<wds::H264VideoCodec>& sink_supported_codecs) override;
33 wds::H264VideoFormat GetOptimalVideoFormat() const override;
34 bool InitOptimalAudioFormat(
35 const std::vector<wds::AudioCodec>& sink_supported_codecs) override;
36 wds::AudioCodec GetOptimalAudioFormat() const override;
37
38 void SendIDRPicture() override;
39
40 std::string GetSessionId() const override;
41
42 DISALLOW_COPY_AND_ASSIGN(WiFiDisplayMediaManager);
43 };
44
45 } // namespace extensions
46
47 #endif // EXTENSIONS_BROWSER_API_DISPLAY_SOURCE_WIFI_DISPLAY_WIFI_DISPLAY_MEDIA _MANAGER_H_
OLDNEW
« no previous file with comments | « extensions/renderer/DEPS ('k') | extensions/renderer/api/display_source/wifi_display/wifi_display_media_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698