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

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

Issue 11644078: 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: Roll libvpx_revision to pick up a bug fix. Created 7 years, 12 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 632 matching lines...) Expand 10 before | Expand all | Expand 10 after
643 kOsAll, 643 kOsAll,
644 SINGLE_VALUE_TYPE(switches::kEnableEncryptedMedia) 644 SINGLE_VALUE_TYPE(switches::kEnableEncryptedMedia)
645 }, 645 },
646 { 646 {
647 "enable-opus-playback", 647 "enable-opus-playback",
648 IDS_FLAGS_ENABLE_OPUS_PLAYBACK_NAME, 648 IDS_FLAGS_ENABLE_OPUS_PLAYBACK_NAME,
649 IDS_FLAGS_ENABLE_OPUS_PLAYBACK_DESCRIPTION, 649 IDS_FLAGS_ENABLE_OPUS_PLAYBACK_DESCRIPTION,
650 kOsAll, 650 kOsAll,
651 SINGLE_VALUE_TYPE(switches::kEnableOpusPlayback) 651 SINGLE_VALUE_TYPE(switches::kEnableOpusPlayback)
652 }, 652 },
653 {
654 "enable-vp9-playback",
655 IDS_FLAGS_ENABLE_VP9_PLAYBACK_NAME,
656 IDS_FLAGS_ENABLE_VP9_PLAYBACK_DESCRIPTION,
657 kOsAll,
658 SINGLE_VALUE_TYPE(switches::kEnableVp9Playback)
659 },
653 #if defined(USE_ASH) 660 #if defined(USE_ASH)
654 { 661 {
655 "ash-disable-auto-window-placement", 662 "ash-disable-auto-window-placement",
656 IDS_FLAGS_ASH_AUTO_WINDOW_PLACEMENT_NAME, 663 IDS_FLAGS_ASH_AUTO_WINDOW_PLACEMENT_NAME,
657 IDS_FLAGS_ASH_AUTO_WINDOW_PLACEMENT_DESCRIPTION, 664 IDS_FLAGS_ASH_AUTO_WINDOW_PLACEMENT_DESCRIPTION,
658 kOsWin | kOsLinux | kOsCrOS, 665 kOsWin | kOsLinux | kOsCrOS,
659 SINGLE_VALUE_TYPE(ash::switches::kAshDisableAutoWindowPlacement) 666 SINGLE_VALUE_TYPE(ash::switches::kAshDisableAutoWindowPlacement)
660 }, 667 },
661 { 668 {
662 "ash-enable-per-app-launcher", 669 "ash-enable-per-app-launcher",
(...skipping 962 matching lines...) Expand 10 before | Expand all | Expand 10 after
1625 } 1632 }
1626 1633
1627 const Experiment* GetExperiments(size_t* count) { 1634 const Experiment* GetExperiments(size_t* count) {
1628 *count = num_experiments; 1635 *count = num_experiments;
1629 return experiments; 1636 return experiments;
1630 } 1637 }
1631 1638
1632 } // namespace testing 1639 } // namespace testing
1633 1640
1634 } // namespace about_flags 1641 } // 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