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

Side by Side Diff: chrome/browser/about_flags.cc

Issue 16830004: media: Remove VP9 flag, and enable VP9 support by default. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix nit in generated_resources.grd Created 7 years, 6 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "chrome/browser/about_flags.h" 5 #include "chrome/browser/about_flags.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <iterator> 8 #include <iterator>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 718 matching lines...) Expand 10 before | Expand all | Expand 10 after
729 kOsDesktop, 729 kOsDesktop,
730 SINGLE_VALUE_TYPE(switches::kDisableLegacyEncryptedMedia) 730 SINGLE_VALUE_TYPE(switches::kDisableLegacyEncryptedMedia)
731 }, 731 },
732 { 732 {
733 "enable-opus-playback", 733 "enable-opus-playback",
734 IDS_FLAGS_ENABLE_OPUS_PLAYBACK_NAME, 734 IDS_FLAGS_ENABLE_OPUS_PLAYBACK_NAME,
735 IDS_FLAGS_ENABLE_OPUS_PLAYBACK_DESCRIPTION, 735 IDS_FLAGS_ENABLE_OPUS_PLAYBACK_DESCRIPTION,
736 kOsDesktop, 736 kOsDesktop,
737 SINGLE_VALUE_TYPE(switches::kEnableOpusPlayback) 737 SINGLE_VALUE_TYPE(switches::kEnableOpusPlayback)
738 }, 738 },
739 { 739 {
740 "enable-vp9-playback",
741 IDS_FLAGS_ENABLE_VP9_PLAYBACK_NAME,
742 IDS_FLAGS_ENABLE_VP9_PLAYBACK_DESCRIPTION,
743 kOsDesktop,
744 SINGLE_VALUE_TYPE(switches::kEnableVp9Playback)
745 },
746 {
747 "enable-vp8-alpha-playback", 740 "enable-vp8-alpha-playback",
748 IDS_FLAGS_ENABLE_VP8_ALPHA_PLAYBACK_NAME, 741 IDS_FLAGS_ENABLE_VP8_ALPHA_PLAYBACK_NAME,
749 IDS_FLAGS_ENABLE_VP8_ALPHA_PLAYBACK_DESCRIPTION, 742 IDS_FLAGS_ENABLE_VP8_ALPHA_PLAYBACK_DESCRIPTION,
750 kOsDesktop, 743 kOsDesktop,
751 SINGLE_VALUE_TYPE(switches::kEnableVp8AlphaPlayback) 744 SINGLE_VALUE_TYPE(switches::kEnableVp8AlphaPlayback)
752 }, 745 },
753 { 746 {
754 "enable-managed-users", 747 "enable-managed-users",
755 IDS_FLAGS_ENABLE_LOCALLY_MANAGED_USERS_NAME, 748 IDS_FLAGS_ENABLE_LOCALLY_MANAGED_USERS_NAME,
756 IDS_FLAGS_ENABLE_LOCALLY_MANAGED_USERS_DESCRIPTION, 749 IDS_FLAGS_ENABLE_LOCALLY_MANAGED_USERS_DESCRIPTION,
(...skipping 1287 matching lines...) Expand 10 before | Expand all | Expand 10 after
2044 } 2037 }
2045 2038
2046 const Experiment* GetExperiments(size_t* count) { 2039 const Experiment* GetExperiments(size_t* count) {
2047 *count = num_experiments; 2040 *count = num_experiments;
2048 return experiments; 2041 return experiments;
2049 } 2042 }
2050 2043
2051 } // namespace testing 2044 } // namespace testing
2052 2045
2053 } // namespace about_flags 2046 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | content/browser/renderer_host/render_process_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698