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

Side by Side Diff: content/browser/media/media_source_browsertest.cc

Issue 629963002: Replacing the OVERRIDE with override and FINAL with final in content/browser/media (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 (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 30 matching lines...) Expand all
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 RunMediaTestPage("media_source_player.html", query_params, expectation, 46 RunMediaTestPage("media_source_player.html", query_params, expectation,
47 true); 47 true);
48 } 48 }
49 49
50 #if defined(OS_ANDROID) 50 #if defined(OS_ANDROID)
51 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE { 51 virtual void SetUpCommandLine(CommandLine* command_line) override {
52 command_line->AppendSwitch( 52 command_line->AppendSwitch(
53 switches::kDisableGestureRequirementForMediaPlayback); 53 switches::kDisableGestureRequirementForMediaPlayback);
54 } 54 }
55 #endif 55 #endif
56 }; 56 };
57 57
58 IN_PROC_BROWSER_TEST_F(MediaSourceTest, Playback_VideoAudio_WebM) { 58 IN_PROC_BROWSER_TEST_F(MediaSourceTest, Playback_VideoAudio_WebM) {
59 TestSimplePlayback("bear-320x240.webm", kWebMAudioVideo, kEnded); 59 TestSimplePlayback("bear-320x240.webm", kWebMAudioVideo, kEnded);
60 } 60 }
61 61
(...skipping 23 matching lines...) Expand all
85 VLOG(0) << "Skipping test - MSE not supported."; 85 VLOG(0) << "Skipping test - MSE not supported.";
86 return; 86 return;
87 } 87 }
88 RunMediaTestPage("mse_config_change.html", 88 RunMediaTestPage("mse_config_change.html",
89 base::StringPairs(), 89 base::StringPairs(),
90 kEnded, 90 kEnded,
91 true); 91 true);
92 } 92 }
93 93
94 } // namespace content 94 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/media/media_internals_proxy.h ('k') | content/browser/media/media_web_contents_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698