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

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

Issue 11468018: Add libvpx wrapper to media to support VP9 video decoding. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add work around for lack of VP9 in ffmpeg. Created 8 years 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 624 matching lines...) Expand 10 before | Expand all | Expand 10 after
635 kOsAll, 635 kOsAll,
636 SINGLE_VALUE_TYPE(switches::kEnableEncryptedMedia) 636 SINGLE_VALUE_TYPE(switches::kEnableEncryptedMedia)
637 }, 637 },
638 { 638 {
639 "enable-opus-playback", 639 "enable-opus-playback",
640 IDS_FLAGS_ENABLE_OPUS_PLAYBACK_NAME, 640 IDS_FLAGS_ENABLE_OPUS_PLAYBACK_NAME,
641 IDS_FLAGS_ENABLE_OPUS_PLAYBACK_DESCRIPTION, 641 IDS_FLAGS_ENABLE_OPUS_PLAYBACK_DESCRIPTION,
642 kOsAll, 642 kOsAll,
643 SINGLE_VALUE_TYPE(switches::kEnableOpusPlayback) 643 SINGLE_VALUE_TYPE(switches::kEnableOpusPlayback)
644 }, 644 },
645 {
646 "enable-vp9-playback",
647 IDS_FLAGS_ENABLE_VP9_PLAYBACK_NAME,
648 IDS_FLAGS_ENABLE_VP9_PLAYBACK_DESCRIPTION,
649 kOsAll,
650 SINGLE_VALUE_TYPE(switches::kEnableVp9Playback)
651 },
645 #if defined(USE_ASH) 652 #if defined(USE_ASH)
646 { 653 {
647 "aura-google-dialog-frames", 654 "aura-google-dialog-frames",
648 IDS_FLAGS_AURA_GOOGLE_DIALOG_FRAMES_NAME, 655 IDS_FLAGS_AURA_GOOGLE_DIALOG_FRAMES_NAME,
649 IDS_FLAGS_AURA_GOOGLE_DIALOG_FRAMES_DESCRIPTION, 656 IDS_FLAGS_AURA_GOOGLE_DIALOG_FRAMES_DESCRIPTION,
650 kOsWin | kOsLinux | kOsCrOS, 657 kOsWin | kOsLinux | kOsCrOS,
651 SINGLE_VALUE_TYPE(ash::switches::kAuraGoogleDialogFrames) 658 SINGLE_VALUE_TYPE(ash::switches::kAuraGoogleDialogFrames)
652 }, 659 },
653 { 660 {
654 "ash-disable-auto-window-placement", 661 "ash-disable-auto-window-placement",
(...skipping 976 matching lines...) Expand 10 before | Expand all | Expand 10 after
1631 } 1638 }
1632 1639
1633 const Experiment* GetExperiments(size_t* count) { 1640 const Experiment* GetExperiments(size_t* count) {
1634 *count = num_experiments; 1641 *count = num_experiments;
1635 return experiments; 1642 return experiments;
1636 } 1643 }
1637 1644
1638 } // namespace testing 1645 } // namespace testing
1639 1646
1640 } // namespace about_flags 1647 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698