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

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

Issue 11700002: Revert "Add wrapper class to media for support of VP9 video, and add a command line flag to enable … (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 },
660 #if defined(USE_ASH) 653 #if defined(USE_ASH)
661 { 654 {
662 "ash-disable-auto-window-placement", 655 "ash-disable-auto-window-placement",
663 IDS_FLAGS_ASH_AUTO_WINDOW_PLACEMENT_NAME, 656 IDS_FLAGS_ASH_AUTO_WINDOW_PLACEMENT_NAME,
664 IDS_FLAGS_ASH_AUTO_WINDOW_PLACEMENT_DESCRIPTION, 657 IDS_FLAGS_ASH_AUTO_WINDOW_PLACEMENT_DESCRIPTION,
665 kOsWin | kOsLinux | kOsCrOS, 658 kOsWin | kOsLinux | kOsCrOS,
666 SINGLE_VALUE_TYPE(ash::switches::kAshDisableAutoWindowPlacement) 659 SINGLE_VALUE_TYPE(ash::switches::kAshDisableAutoWindowPlacement)
667 }, 660 },
668 { 661 {
669 "ash-enable-per-app-launcher", 662 "ash-enable-per-app-launcher",
(...skipping 969 matching lines...) Expand 10 before | Expand all | Expand 10 after
1639 } 1632 }
1640 1633
1641 const Experiment* GetExperiments(size_t* count) { 1634 const Experiment* GetExperiments(size_t* count) {
1642 *count = num_experiments; 1635 *count = num_experiments;
1643 return experiments; 1636 return experiments;
1644 } 1637 }
1645 1638
1646 } // namespace testing 1639 } // namespace testing
1647 1640
1648 } // 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