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

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

Issue 2846713002: [Media] Added feature flag for new remote playback pipeline (Closed)
Patch Set: Created 3 years, 7 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 (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 <iterator> 7 #include <iterator>
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <utility> 10 #include <utility>
(...skipping 2383 matching lines...) Expand 10 before | Expand all | Expand 10 after
2394 FEATURE_VALUE_TYPE(password_manager::features::kFillOnAccountSelect)}, 2394 FEATURE_VALUE_TYPE(password_manager::features::kFillOnAccountSelect)},
2395 {"new-audio-rendering-mixing-strategy", 2395 {"new-audio-rendering-mixing-strategy",
2396 flag_descriptions::kNewAudioRenderingMixingStrategyName, 2396 flag_descriptions::kNewAudioRenderingMixingStrategyName,
2397 flag_descriptions::kNewAudioRenderingMixingStrategyDescription, 2397 flag_descriptions::kNewAudioRenderingMixingStrategyDescription,
2398 kOsWin | kOsMac | kOsLinux | kOsAndroid, 2398 kOsWin | kOsMac | kOsLinux | kOsAndroid,
2399 FEATURE_VALUE_TYPE(media::kNewAudioRenderingMixingStrategy)}, 2399 FEATURE_VALUE_TYPE(media::kNewAudioRenderingMixingStrategy)},
2400 {"disable-background-video-track", 2400 {"disable-background-video-track",
2401 flag_descriptions::kBackgroundVideoTrackOptimizationName, 2401 flag_descriptions::kBackgroundVideoTrackOptimizationName,
2402 flag_descriptions::kBackgroundVideoTrackOptimizationDescription, kOsAll, 2402 flag_descriptions::kBackgroundVideoTrackOptimizationDescription, kOsAll,
2403 FEATURE_VALUE_TYPE(media::kBackgroundVideoTrackOptimization)}, 2403 FEATURE_VALUE_TYPE(media::kBackgroundVideoTrackOptimization)},
2404 {"enable-new-remote-playback-pipeline",
2405 flag_descriptions::kNewRemotePlaybackPipelineName,
2406 flag_descriptions::kNewRemotePlaybackPipelineDescription, kOsAll,
2407 FEATURE_VALUE_TYPE(media::kNewRemotePlaybackPipeline)},
2404 #if defined(OS_CHROMEOS) 2408 #if defined(OS_CHROMEOS)
2405 {"quick-unlock-pin", flag_descriptions::kQuickUnlockPin, 2409 {"quick-unlock-pin", flag_descriptions::kQuickUnlockPin,
2406 flag_descriptions::kQuickUnlockPinDescription, kOsCrOS, 2410 flag_descriptions::kQuickUnlockPinDescription, kOsCrOS,
2407 FEATURE_VALUE_TYPE(features::kQuickUnlockPin)}, 2411 FEATURE_VALUE_TYPE(features::kQuickUnlockPin)},
2408 {"quick-unlock-fingerprint", flag_descriptions::kQuickUnlockFingerprint, 2412 {"quick-unlock-fingerprint", flag_descriptions::kQuickUnlockFingerprint,
2409 flag_descriptions::kQuickUnlockFingerprintDescription, kOsCrOS, 2413 flag_descriptions::kQuickUnlockFingerprintDescription, kOsCrOS,
2410 FEATURE_VALUE_TYPE(features::kQuickUnlockFingerprint)}, 2414 FEATURE_VALUE_TYPE(features::kQuickUnlockFingerprint)},
2411 #endif // OS_CHROMEOS 2415 #endif // OS_CHROMEOS
2412 {"browser-task-scheduler", flag_descriptions::kBrowserTaskSchedulerName, 2416 {"browser-task-scheduler", flag_descriptions::kBrowserTaskSchedulerName,
2413 flag_descriptions::kBrowserTaskSchedulerDescription, kOsAll, 2417 flag_descriptions::kBrowserTaskSchedulerDescription, kOsAll,
(...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after
2986 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; 2990 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0;
2987 2991
2988 const FeatureEntry* GetFeatureEntries(size_t* count) { 2992 const FeatureEntry* GetFeatureEntries(size_t* count) {
2989 *count = arraysize(kFeatureEntries); 2993 *count = arraysize(kFeatureEntries);
2990 return kFeatureEntries; 2994 return kFeatureEntries;
2991 } 2995 }
2992 2996
2993 } // namespace testing 2997 } // namespace testing
2994 2998
2995 } // namespace about_flags 2999 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/flag_descriptions.h » ('j') | content/public/common/common_param_traits_macros.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698