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

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 Created 7 years, 8 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 704 matching lines...) Expand 10 before | Expand all | Expand 10 after
715 SINGLE_VALUE_TYPE(switches::kEnableOpusPlayback) 715 SINGLE_VALUE_TYPE(switches::kEnableOpusPlayback)
716 }, 716 },
717 { 717 {
718 "enable-vp9-playback", 718 "enable-vp9-playback",
719 IDS_FLAGS_ENABLE_VP9_PLAYBACK_NAME, 719 IDS_FLAGS_ENABLE_VP9_PLAYBACK_NAME,
720 IDS_FLAGS_ENABLE_VP9_PLAYBACK_DESCRIPTION, 720 IDS_FLAGS_ENABLE_VP9_PLAYBACK_DESCRIPTION,
721 kOsDesktop, 721 kOsDesktop,
722 SINGLE_VALUE_TYPE(switches::kEnableVp9Playback) 722 SINGLE_VALUE_TYPE(switches::kEnableVp9Playback)
723 }, 723 },
724 { 724 {
725 "enable-vp8-alpha-playback",
726 IDS_FLAGS_ENABLE_VP8_ALPHA_PLAYBACK_NAME,
727 IDS_FLAGS_ENABLE_VP8_ALPHA_PLAYBACK_DESCRIPTION,
728 kOsDesktop,
729 SINGLE_VALUE_TYPE(switches::kEnableVp8AlphaPlayback)
730 },
731 {
725 "enable-managed-users", 732 "enable-managed-users",
726 IDS_FLAGS_ENABLE_LOCALLY_MANAGED_USERS_NAME, 733 IDS_FLAGS_ENABLE_LOCALLY_MANAGED_USERS_NAME,
727 IDS_FLAGS_ENABLE_LOCALLY_MANAGED_USERS_DESCRIPTION, 734 IDS_FLAGS_ENABLE_LOCALLY_MANAGED_USERS_DESCRIPTION,
728 kOsAll, 735 kOsAll,
729 SINGLE_VALUE_TYPE(switches::kEnableManagedUsers) 736 SINGLE_VALUE_TYPE(switches::kEnableManagedUsers)
730 }, 737 },
731 #if defined(USE_ASH) 738 #if defined(USE_ASH)
732 { 739 {
733 "ash-disable-auto-window-placement", 740 "ash-disable-auto-window-placement",
734 IDS_FLAGS_ASH_AUTO_WINDOW_PLACEMENT_NAME, 741 IDS_FLAGS_ASH_AUTO_WINDOW_PLACEMENT_NAME,
(...skipping 1109 matching lines...) Expand 10 before | Expand all | Expand 10 after
1844 } 1851 }
1845 1852
1846 const Experiment* GetExperiments(size_t* count) { 1853 const Experiment* GetExperiments(size_t* count) {
1847 *count = num_experiments; 1854 *count = num_experiments;
1848 return experiments; 1855 return experiments;
1849 } 1856 }
1850 1857
1851 } // namespace testing 1858 } // namespace testing
1852 1859
1853 } // namespace about_flags 1860 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | content/browser/renderer_host/media/video_capture_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698