| Index: content/browser/media/webrtc_browsertest.cc
|
| diff --git a/content/browser/media/webrtc_browsertest.cc b/content/browser/media/webrtc_browsertest.cc
|
| index e467d644770a5b57957a878bd7ad57ef00641241..92c6d449618b2f1c7f9eba3cfde99ad21d5001d9 100644
|
| --- a/content/browser/media/webrtc_browsertest.cc
|
| +++ b/content/browser/media/webrtc_browsertest.cc
|
| @@ -115,7 +115,8 @@ IN_PROC_BROWSER_TEST_F(WebRtcBrowserTest, MAYBE_CanSetupDefaultVideoCall) {
|
| "callAndExpectResolution({video: true}, 640, 480);");
|
| }
|
|
|
| -IN_PROC_BROWSER_TEST_F(WebRtcBrowserTest, CanSetupVideoCallWith1To1AspecRatio) {
|
| +IN_PROC_BROWSER_TEST_F(WebRtcBrowserTest,
|
| + CanSetupVideoCallWith1To1AspectRatio) {
|
| const std::string javascript =
|
| "callAndExpectResolution({video: {mandatory: {minWidth: 320,"
|
| " maxWidth: 320, minHeight: 320, maxHeight: 320}}}, 320, 320);";
|
| @@ -123,7 +124,7 @@ IN_PROC_BROWSER_TEST_F(WebRtcBrowserTest, CanSetupVideoCallWith1To1AspecRatio) {
|
| }
|
|
|
| IN_PROC_BROWSER_TEST_F(WebRtcBrowserTest,
|
| - CanSetupVideoCallWith16To9AspecRatio) {
|
| + CanSetupVideoCallWith16To9AspectRatio) {
|
| const std::string javascript =
|
| "callAndExpectResolution({video: {mandatory: {minWidth: 640,"
|
| " maxWidth: 640, minAspectRatio: 1.777}}}, 640, 360);";
|
| @@ -131,7 +132,7 @@ IN_PROC_BROWSER_TEST_F(WebRtcBrowserTest,
|
| }
|
|
|
| IN_PROC_BROWSER_TEST_F(WebRtcBrowserTest,
|
| - CanSetupVideoCallWith4To3AspecRatio) {
|
| + CanSetupVideoCallWith4To3AspectRatio) {
|
| const std::string javascript =
|
| "callAndExpectResolution({video: {mandatory: {minWidth: 960,"
|
| "maxAspectRatio: 1.333}}}, 960, 720);";
|
|
|