diff options
author | tomfinegan@chromium.org <tomfinegan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-15 00:50:54 +0000 |
---|---|---|
committer | tomfinegan@chromium.org <tomfinegan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-15 00:50:54 +0000 |
commit | b150b553cd0e97b649e94f11fd5c1d4b092327f2 (patch) | |
tree | f8b4b6b955eee04abb06438039d32c20837cef2f /media/base/run_all_unittests.cc | |
parent | 3e001dce773fd9252e0ccffe11ef8fb43bdf1922 (diff) | |
download | chromium_src-b150b553cd0e97b649e94f11fd5c1d4b092327f2.zip chromium_src-b150b553cd0e97b649e94f11fd5c1d4b092327f2.tar.gz chromium_src-b150b553cd0e97b649e94f11fd5c1d4b092327f2.tar.bz2 |
media: Remove VP9 flag, and enable VP9 support by default.
BUG=180280
TEST=VP9 pipeline integration tests pass
Review URL: https://chromiumcodereview.appspot.com/16830004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@206530 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/base/run_all_unittests.cc')
-rw-r--r-- | media/base/run_all_unittests.cc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/media/base/run_all_unittests.cc b/media/base/run_all_unittests.cc index 4a6d272..4274634 100644 --- a/media/base/run_all_unittests.cc +++ b/media/base/run_all_unittests.cc @@ -34,13 +34,10 @@ void TestSuiteNoAtExit::Initialize() { // Run this here instead of main() to ensure an AtExitManager is already // present. media::InitializeMediaLibraryForTesting(); - // Enable VP9 video codec support for all media tests. - // TODO(tomfinegan): Remove this once the VP9 flag is removed or negated. - CommandLine* cmd_line = CommandLine::ForCurrentProcess(); - cmd_line->AppendSwitch(switches::kEnableVp9Playback); // Enable VP8 alpha support for all media tests. // TODO(tomfinegan): Remove this once the VP8 alpha flag is removed or // negated. + CommandLine* cmd_line = CommandLine::ForCurrentProcess(); cmd_line->AppendSwitch(switches::kEnableVp8AlphaPlayback); } |