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

Unified Diff: chrome/browser/media/webrtc_browsertest_base.h

Issue 2190533002: Adds a WebRTC browser_test with opus dtx enabled. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Last comments by Minyue. Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/media/webrtc_browsertest.cc ('k') | chrome/browser/media/webrtc_browsertest_base.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/media/webrtc_browsertest_base.h
diff --git a/chrome/browser/media/webrtc_browsertest_base.h b/chrome/browser/media/webrtc_browsertest_base.h
index 68fd0e717655f10c41d811210f69385e325bccb9..d4d6dcd495d24c8b74fc0daa8cb6c4d5dd75f20c 100644
--- a/chrome/browser/media/webrtc_browsertest_base.h
+++ b/chrome/browser/media/webrtc_browsertest_base.h
@@ -129,10 +129,8 @@ class WebRtcTestBase : public InProcessBrowserTest {
// If |video_codec| is not |kUseDefaultVideoCodec|, the SDP offer is modified
// (and SDP answer verified) so that the specified video codec (case-sensitive
// name) is used during the call instead of the default one.
- void NegotiateCall(
- content::WebContents* from_tab,
- content::WebContents* to_tab,
- const std::string& video_codec = kUseDefaultVideoCodec) const;
+ void NegotiateCall(content::WebContents* from_tab,
+ content::WebContents* to_tab) const;
// Hangs up a negotiated call.
void HangUp(content::WebContents* from_tab) const;
@@ -166,17 +164,20 @@ class WebRtcTestBase : public InProcessBrowserTest {
void GenerateAndCloneCertificate(content::WebContents* tab,
const std::string& keygen_algorithm) const;
+ // Change the default video codec in the offer SDP.
+ void SetDefaultVideoCodec(content::WebContents* tab,
+ const std::string& video_codec) const;
+
+ // Add 'usedtx=1' to the offer SDP.
+ void EnableOpusDtx(content::WebContents* tab) const;
+
private:
void CloseInfoBarInTab(content::WebContents* tab_contents,
infobars::InfoBar* infobar) const;
- std::string CreateLocalOffer(
- content::WebContents* from_tab,
- std::string default_video_codec = kUseDefaultVideoCodec) const;
- std::string CreateAnswer(
- std::string local_offer,
- content::WebContents* to_tab,
- std::string default_video_codec = kUseDefaultVideoCodec) const;
+ std::string CreateLocalOffer(content::WebContents* from_tab) const;
+ std::string CreateAnswer(std::string local_offer,
+ content::WebContents* to_tab) const;
void ReceiveAnswer(const std::string& answer,
content::WebContents* from_tab) const;
void GatherAndSendIceCandidates(content::WebContents* from_tab,
« no previous file with comments | « chrome/browser/media/webrtc_browsertest.cc ('k') | chrome/browser/media/webrtc_browsertest_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698