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

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

Issue 16917014: Revert "Allow suppressed EME canPlayType() responses to be overridden with a flag." (r208096). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
« no previous file with comments | « no previous file | content/browser/renderer_host/render_process_host_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 737 matching lines...) Expand 10 before | Expand all | Expand 10 after
748 SINGLE_VALUE_TYPE(switches::kEnableEncryptedMedia) 748 SINGLE_VALUE_TYPE(switches::kEnableEncryptedMedia)
749 }, 749 },
750 { 750 {
751 "disable-encrypted-media", 751 "disable-encrypted-media",
752 IDS_FLAGS_DISABLE_PREFIXED_ENCRYPTED_MEDIA_NAME, 752 IDS_FLAGS_DISABLE_PREFIXED_ENCRYPTED_MEDIA_NAME,
753 IDS_FLAGS_DISABLE_PREFIXED_ENCRYPTED_MEDIA_DESCRIPTION, 753 IDS_FLAGS_DISABLE_PREFIXED_ENCRYPTED_MEDIA_DESCRIPTION,
754 kOsDesktop, 754 kOsDesktop,
755 SINGLE_VALUE_TYPE(switches::kDisableLegacyEncryptedMedia) 755 SINGLE_VALUE_TYPE(switches::kDisableLegacyEncryptedMedia)
756 }, 756 },
757 { 757 {
758 "override-encrypted-media-canplaytype",
759 IDS_FLAGS_ENCRYPTED_MEDIA_CANPLAYTYPE_OVERRIDE_NAME,
760 IDS_FLAGS_ENCRYPTED_MEDIA_CANPLAYTYPE_OVERRIDE_DESCRIPTION,
761 kOsMac | kOsWin,
762 SINGLE_VALUE_TYPE(switches::kOverrideEncryptedMediaCanPlayType)
763 },
764 {
765 "enable-opus-playback", 758 "enable-opus-playback",
766 IDS_FLAGS_ENABLE_OPUS_PLAYBACK_NAME, 759 IDS_FLAGS_ENABLE_OPUS_PLAYBACK_NAME,
767 IDS_FLAGS_ENABLE_OPUS_PLAYBACK_DESCRIPTION, 760 IDS_FLAGS_ENABLE_OPUS_PLAYBACK_DESCRIPTION,
768 kOsDesktop, 761 kOsDesktop,
769 SINGLE_VALUE_TYPE(switches::kEnableOpusPlayback) 762 SINGLE_VALUE_TYPE(switches::kEnableOpusPlayback)
770 }, 763 },
771 { 764 {
772 "enable-vp8-alpha-playback", 765 "enable-vp8-alpha-playback",
773 IDS_FLAGS_ENABLE_VP8_ALPHA_PLAYBACK_NAME, 766 IDS_FLAGS_ENABLE_VP8_ALPHA_PLAYBACK_NAME,
774 IDS_FLAGS_ENABLE_VP8_ALPHA_PLAYBACK_DESCRIPTION, 767 IDS_FLAGS_ENABLE_VP8_ALPHA_PLAYBACK_DESCRIPTION,
(...skipping 1282 matching lines...) Expand 10 before | Expand all | Expand 10 after
2057 } 2050 }
2058 2051
2059 const Experiment* GetExperiments(size_t* count) { 2052 const Experiment* GetExperiments(size_t* count) {
2060 *count = num_experiments; 2053 *count = num_experiments;
2061 return experiments; 2054 return experiments;
2062 } 2055 }
2063 2056
2064 } // namespace testing 2057 } // namespace testing
2065 2058
2066 } // namespace about_flags 2059 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | content/browser/renderer_host/render_process_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698