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

Side by Side Diff: chrome/browser/media/encrypted_media_browsertest.cc

Issue 2845973005: Reland of name kDisableGestureRequirementForMediaPlayback and make it a test-only flag. (Closed)
Patch Set: Created 3 years, 7 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
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 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 <memory> 5 #include <memory>
6 #include <utility> 6 #include <utility>
7 7
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/path_service.h" 9 #include "base/path_service.h"
10 #include "base/strings/string_number_conversions.h" 10 #include "base/strings/string_number_conversions.h"
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 title_watcher->AlsoWaitForTitle(base::ASCIIToUTF16(kEmeLoadFailed)); 260 title_watcher->AlsoWaitForTitle(base::ASCIIToUTF16(kEmeLoadFailed));
261 title_watcher->AlsoWaitForTitle(base::ASCIIToUTF16(kEmeUpdateFailed)); 261 title_watcher->AlsoWaitForTitle(base::ASCIIToUTF16(kEmeUpdateFailed));
262 title_watcher->AlsoWaitForTitle(base::ASCIIToUTF16(kEmeErrorEvent)); 262 title_watcher->AlsoWaitForTitle(base::ASCIIToUTF16(kEmeErrorEvent));
263 title_watcher->AlsoWaitForTitle( 263 title_watcher->AlsoWaitForTitle(
264 base::ASCIIToUTF16(kEmeMessageUnexpectedType)); 264 base::ASCIIToUTF16(kEmeMessageUnexpectedType));
265 title_watcher->AlsoWaitForTitle( 265 title_watcher->AlsoWaitForTitle(
266 base::ASCIIToUTF16(kEmeRenewalMissingHeader)); 266 base::ASCIIToUTF16(kEmeRenewalMissingHeader));
267 } 267 }
268 268
269 void SetUpCommandLine(base::CommandLine* command_line) override { 269 void SetUpCommandLine(base::CommandLine* command_line) override {
270 command_line->AppendSwitch( 270 command_line->AppendSwitch(switches::kIgnoreAutoplayRestrictionsForTests);
271 switches::kDisableGestureRequirementForMediaPlayback);
272 command_line->AppendSwitch(switches::kEnableVp9InMp4); 271 command_line->AppendSwitch(switches::kEnableVp9InMp4);
273 } 272 }
274 273
275 #if BUILDFLAG(ENABLE_PEPPER_CDMS) 274 #if BUILDFLAG(ENABLE_PEPPER_CDMS)
276 void SetUpDefaultCommandLine(base::CommandLine* command_line) override { 275 void SetUpDefaultCommandLine(base::CommandLine* command_line) override {
277 base::CommandLine default_command_line(base::CommandLine::NO_PROGRAM); 276 base::CommandLine default_command_line(base::CommandLine::NO_PROGRAM);
278 InProcessBrowserTest::SetUpDefaultCommandLine(&default_command_line); 277 InProcessBrowserTest::SetUpDefaultCommandLine(&default_command_line);
279 test_launcher_utils::RemoveCommandLineSwitch( 278 test_launcher_utils::RemoveCommandLineSwitch(
280 default_command_line, switches::kDisableComponentUpdate, command_line); 279 default_command_line, switches::kDisableComponentUpdate, command_line);
281 } 280 }
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after
740 #endif // BUILDFLAG(ENABLE_PEPPER_CDMS) 739 #endif // BUILDFLAG(ENABLE_PEPPER_CDMS)
741 740
742 #if BUILDFLAG(ENABLE_CDM_HOST_VERIFICATION) 741 #if BUILDFLAG(ENABLE_CDM_HOST_VERIFICATION)
743 IN_PROC_BROWSER_TEST_F(ECKEncryptedMediaTest, VerifyCdmHostTest) { 742 IN_PROC_BROWSER_TEST_F(ECKEncryptedMediaTest, VerifyCdmHostTest) {
744 TestNonPlaybackCases(kExternalClearKeyVerifyCdmHostTestKeySystem, 743 TestNonPlaybackCases(kExternalClearKeyVerifyCdmHostTestKeySystem,
745 kUnitTestSuccess); 744 kUnitTestSuccess);
746 } 745 }
747 #endif // BUILDFLAG(ENABLE_CDM_HOST_VERIFICATION) 746 #endif // BUILDFLAG(ENABLE_CDM_HOST_VERIFICATION)
748 747
749 } // namespace chrome 748 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/browser/media/defer_background_media_browsertest.cc ('k') | chrome/renderer/chrome_content_renderer_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698