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

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

Issue 12263013: media: Add support for playback of VP8 Alpha video streams (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase and fixes for comments on previous patchset Created 7 years, 9 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 <string.h> 7 #include <string.h>
8 8
9 #include <algorithm> 9 #include <algorithm>
10 #include <iterator> 10 #include <iterator>
(...skipping 661 matching lines...) Expand 10 before | Expand all | Expand 10 after
672 SINGLE_VALUE_TYPE(switches::kEnableOpusPlayback) 672 SINGLE_VALUE_TYPE(switches::kEnableOpusPlayback)
673 }, 673 },
674 { 674 {
675 "enable-vp9-playback", 675 "enable-vp9-playback",
676 IDS_FLAGS_ENABLE_VP9_PLAYBACK_NAME, 676 IDS_FLAGS_ENABLE_VP9_PLAYBACK_NAME,
677 IDS_FLAGS_ENABLE_VP9_PLAYBACK_DESCRIPTION, 677 IDS_FLAGS_ENABLE_VP9_PLAYBACK_DESCRIPTION,
678 kOsDesktop, 678 kOsDesktop,
679 SINGLE_VALUE_TYPE(switches::kEnableVp9Playback) 679 SINGLE_VALUE_TYPE(switches::kEnableVp9Playback)
680 }, 680 },
681 { 681 {
682 "enable-vp8-alpha-playback",
683 IDS_FLAGS_ENABLE_VP8_ALPHA_PLAYBACK_NAME,
684 IDS_FLAGS_ENABLE_VP8_ALPHA_PLAYBACK_DESCRIPTION,
685 kOsDesktop,
686 SINGLE_VALUE_TYPE(switches::kEnableVp8AlphaPlayback)
687 },
688 {
682 "enable-managed-users", 689 "enable-managed-users",
683 IDS_FLAGS_ENABLE_LOCALLY_MANAGED_USERS_NAME, 690 IDS_FLAGS_ENABLE_LOCALLY_MANAGED_USERS_NAME,
684 IDS_FLAGS_ENABLE_LOCALLY_MANAGED_USERS_DESCRIPTION, 691 IDS_FLAGS_ENABLE_LOCALLY_MANAGED_USERS_DESCRIPTION,
685 kOsAll, 692 kOsAll,
686 SINGLE_VALUE_TYPE(switches::kEnableManagedUsers) 693 SINGLE_VALUE_TYPE(switches::kEnableManagedUsers)
687 }, 694 },
688 #if defined(USE_ASH) 695 #if defined(USE_ASH)
689 { 696 {
690 "ash-disable-auto-window-placement", 697 "ash-disable-auto-window-placement",
691 IDS_FLAGS_ASH_AUTO_WINDOW_PLACEMENT_NAME, 698 IDS_FLAGS_ASH_AUTO_WINDOW_PLACEMENT_NAME,
(...skipping 1071 matching lines...) Expand 10 before | Expand all | Expand 10 after
1763 } 1770 }
1764 1771
1765 const Experiment* GetExperiments(size_t* count) { 1772 const Experiment* GetExperiments(size_t* count) {
1766 *count = num_experiments; 1773 *count = num_experiments;
1767 return experiments; 1774 return experiments;
1768 } 1775 }
1769 1776
1770 } // namespace testing 1777 } // namespace testing
1771 1778
1772 } // namespace about_flags 1779 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698