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

Side by Side Diff: chrome/browser/flag_descriptions.h

Issue 2846713002: [Media] Added feature flag for new remote playback pipeline (Closed)
Patch Set: Created 3 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
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 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 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 5 #ifndef CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 6 #define CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
7 7
8 // Includes needed for macros allowing conditional compilation of some strings. 8 // Includes needed for macros allowing conditional compilation of some strings.
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 #include "build/buildflag.h" 10 #include "build/buildflag.h"
(...skipping 2785 matching lines...) Expand 10 before | Expand all | Expand 10 after
2796 extern const char kNewAudioRenderingMixingStrategyDescription[]; 2796 extern const char kNewAudioRenderingMixingStrategyDescription[];
2797 2797
2798 // Background video track disabling experiment strings. 2798 // Background video track disabling experiment strings.
2799 2799
2800 // Name of the flag for enabling optimizing background video playback. 2800 // Name of the flag for enabling optimizing background video playback.
2801 extern const char kBackgroundVideoTrackOptimizationName[]; 2801 extern const char kBackgroundVideoTrackOptimizationName[];
2802 2802
2803 // Description of the flag for enabling optimizing background video playback. 2803 // Description of the flag for enabling optimizing background video playback.
2804 extern const char kBackgroundVideoTrackOptimizationDescription[]; 2804 extern const char kBackgroundVideoTrackOptimizationDescription[];
2805 2805
2806 // New remote playback pipeline experiment strings.
2807
2808 // Name of the flag for enabling the new remote playback pipeline.
2809 extern const char kNewRemotePlaybackPipelineName[];
2810
2811 // Description of the flag for enabling the new remote playback pipeline.
2812 extern const char kNewRemotePlaybackPipelineDescription[];
2813
2806 // Video fullscreen with orientation lock experiment strings. 2814 // Video fullscreen with orientation lock experiment strings.
2807 2815
2808 // Name of the flag for enabling orientation lock for fullscreen video playback. 2816 // Name of the flag for enabling orientation lock for fullscreen video playback.
2809 extern const char kVideoFullscreenOrientationLockName[]; 2817 extern const char kVideoFullscreenOrientationLockName[];
2810 2818
2811 // Description of the flag for enabling orientation lock for fullscreen video 2819 // Description of the flag for enabling orientation lock for fullscreen video
2812 // playback. 2820 // playback.
2813 extern const char kVideoFullscreenOrientationLockDescription[]; 2821 extern const char kVideoFullscreenOrientationLockDescription[];
2814 2822
2815 // Expensive background timer throttling flag 2823 // Expensive background timer throttling flag
(...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after
3316 3324
3317 // Description of the autoplay policy that has no user gesture requirements. 3325 // Description of the autoplay policy that has no user gesture requirements.
3318 extern const char kAutoplayPolicyNoUserGestureRequired[]; 3326 extern const char kAutoplayPolicyNoUserGestureRequired[];
3319 3327
3320 // Description of the autoplay policy that requires a user gesture. 3328 // Description of the autoplay policy that requires a user gesture.
3321 extern const char kAutoplayPolicyUserGestureRequired[]; 3329 extern const char kAutoplayPolicyUserGestureRequired[];
3322 3330
3323 } // namespace flag_descriptions 3331 } // namespace flag_descriptions
3324 3332
3325 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_ 3333 #endif // CHROME_BROWSER_FLAG_DESCRIPTIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698