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

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

Issue 12045060: Add wrapper class to media for support of VP9 video, and add a command line flag to enable the supp… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add EoS DCHECK in VpxVideoDecoder::Decode(). Created 7 years, 11 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 641 matching lines...) Expand 10 before | Expand all | Expand 10 after
652 SINGLE_VALUE_TYPE(switches::kEnableEncryptedMedia) 652 SINGLE_VALUE_TYPE(switches::kEnableEncryptedMedia)
653 }, 653 },
654 { 654 {
655 "enable-opus-playback", 655 "enable-opus-playback",
656 IDS_FLAGS_ENABLE_OPUS_PLAYBACK_NAME, 656 IDS_FLAGS_ENABLE_OPUS_PLAYBACK_NAME,
657 IDS_FLAGS_ENABLE_OPUS_PLAYBACK_DESCRIPTION, 657 IDS_FLAGS_ENABLE_OPUS_PLAYBACK_DESCRIPTION,
658 kOsDesktop, 658 kOsDesktop,
659 SINGLE_VALUE_TYPE(switches::kEnableOpusPlayback) 659 SINGLE_VALUE_TYPE(switches::kEnableOpusPlayback)
660 }, 660 },
661 { 661 {
662 "enable-vp9-playback",
663 IDS_FLAGS_ENABLE_VP9_PLAYBACK_NAME,
664 IDS_FLAGS_ENABLE_VP9_PLAYBACK_DESCRIPTION,
665 kOsDesktop,
666 SINGLE_VALUE_TYPE(switches::kEnableVp9Playback)
667 },
668 {
662 "enable-managed-users", 669 "enable-managed-users",
663 IDS_FLAGS_ENABLE_LOCALLY_MANAGED_USERS_NAME, 670 IDS_FLAGS_ENABLE_LOCALLY_MANAGED_USERS_NAME,
664 IDS_FLAGS_ENABLE_LOCALLY_MANAGED_USERS_DESCRIPTION, 671 IDS_FLAGS_ENABLE_LOCALLY_MANAGED_USERS_DESCRIPTION,
665 kOsAll, 672 kOsAll,
666 SINGLE_VALUE_TYPE(switches::kEnableManagedUsers) 673 SINGLE_VALUE_TYPE(switches::kEnableManagedUsers)
667 }, 674 },
668 #if defined(USE_ASH) 675 #if defined(USE_ASH)
669 { 676 {
670 "ash-disable-auto-window-placement", 677 "ash-disable-auto-window-placement",
671 IDS_FLAGS_ASH_AUTO_WINDOW_PLACEMENT_NAME, 678 IDS_FLAGS_ASH_AUTO_WINDOW_PLACEMENT_NAME,
(...skipping 988 matching lines...) Expand 10 before | Expand all | Expand 10 after
1660 } 1667 }
1661 1668
1662 const Experiment* GetExperiments(size_t* count) { 1669 const Experiment* GetExperiments(size_t* count) {
1663 *count = num_experiments; 1670 *count = num_experiments;
1664 return experiments; 1671 return experiments;
1665 } 1672 }
1666 1673
1667 } // namespace testing 1674 } // namespace testing
1668 1675
1669 } // namespace about_flags 1676 } // 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