| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/command_line.h" | 5 #include "base/command_line.h" |
| 6 #include "content/browser/media/media_browsertest.h" | 6 #include "content/browser/media/media_browsertest.h" |
| 7 #include "content/public/common/content_switches.h" | 7 #include "content/public/common/content_switches.h" |
| 8 #if defined(OS_ANDROID) | 8 #if defined(OS_ANDROID) |
| 9 #include "base/android/build_info.h" | 9 #include "base/android/build_info.h" |
| 10 #endif | 10 #endif |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 const std::string& media_type, | 36 const std::string& media_type, |
| 37 const std::string& expectation) { | 37 const std::string& expectation) { |
| 38 if (!IsMSESupported()) { | 38 if (!IsMSESupported()) { |
| 39 VLOG(0) << "Skipping test - MSE not supported."; | 39 VLOG(0) << "Skipping test - MSE not supported."; |
| 40 return; | 40 return; |
| 41 } | 41 } |
| 42 | 42 |
| 43 base::StringPairs query_params; | 43 base::StringPairs query_params; |
| 44 query_params.push_back(std::make_pair("mediaFile", media_file)); | 44 query_params.push_back(std::make_pair("mediaFile", media_file)); |
| 45 query_params.push_back(std::make_pair("mediaType", media_type)); | 45 query_params.push_back(std::make_pair("mediaType", media_type)); |
| 46 query_params.push_back(std::make_pair("usePrefixedEME", "1")); |
| 46 RunMediaTestPage("media_source_player.html", query_params, expectation, | 47 RunMediaTestPage("media_source_player.html", query_params, expectation, |
| 47 true); | 48 true); |
| 48 } | 49 } |
| 49 | 50 |
| 50 #if defined(OS_ANDROID) | 51 #if defined(OS_ANDROID) |
| 51 virtual void SetUpCommandLine(CommandLine* command_line) override { | 52 virtual void SetUpCommandLine(CommandLine* command_line) override { |
| 52 command_line->AppendSwitch( | 53 command_line->AppendSwitch( |
| 53 switches::kDisableGestureRequirementForMediaPlayback); | 54 switches::kDisableGestureRequirementForMediaPlayback); |
| 54 } | 55 } |
| 55 #endif | 56 #endif |
| (...skipping 22 matching lines...) Expand all Loading... |
| 78 TestSimplePlayback("bear-320x240-video-only.webm", kWebMAudioOnly, kError); | 79 TestSimplePlayback("bear-320x240-video-only.webm", kWebMAudioOnly, kError); |
| 79 } | 80 } |
| 80 | 81 |
| 81 // Flaky test crbug.com/246308 | 82 // Flaky test crbug.com/246308 |
| 82 // Test changed to skip checks resulting in flakiness. Proper fix still needed. | 83 // Test changed to skip checks resulting in flakiness. Proper fix still needed. |
| 83 IN_PROC_BROWSER_TEST_F(MediaSourceTest, ConfigChangeVideo) { | 84 IN_PROC_BROWSER_TEST_F(MediaSourceTest, ConfigChangeVideo) { |
| 84 if (!IsMSESupported()) { | 85 if (!IsMSESupported()) { |
| 85 VLOG(0) << "Skipping test - MSE not supported."; | 86 VLOG(0) << "Skipping test - MSE not supported."; |
| 86 return; | 87 return; |
| 87 } | 88 } |
| 88 RunMediaTestPage("mse_config_change.html", | 89 base::StringPairs query_params; |
| 89 base::StringPairs(), | 90 query_params.push_back(std::make_pair("usePrefixedEME", "1")); |
| 90 kEnded, | 91 RunMediaTestPage("mse_config_change.html", query_params, kEnded, true); |
| 91 true); | |
| 92 } | 92 } |
| 93 | 93 |
| 94 } // namespace content | 94 } // namespace content |
| OLD | NEW |