| OLD | NEW |
| 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 2378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2389 FEATURE_VALUE_TYPE(password_manager::features::kFillOnAccountSelect)}, | 2389 FEATURE_VALUE_TYPE(password_manager::features::kFillOnAccountSelect)}, |
| 2390 {"new-audio-rendering-mixing-strategy", | 2390 {"new-audio-rendering-mixing-strategy", |
| 2391 flag_descriptions::kNewAudioRenderingMixingStrategyName, | 2391 flag_descriptions::kNewAudioRenderingMixingStrategyName, |
| 2392 flag_descriptions::kNewAudioRenderingMixingStrategyDescription, | 2392 flag_descriptions::kNewAudioRenderingMixingStrategyDescription, |
| 2393 kOsWin | kOsMac | kOsLinux | kOsAndroid, | 2393 kOsWin | kOsMac | kOsLinux | kOsAndroid, |
| 2394 FEATURE_VALUE_TYPE(media::kNewAudioRenderingMixingStrategy)}, | 2394 FEATURE_VALUE_TYPE(media::kNewAudioRenderingMixingStrategy)}, |
| 2395 {"disable-background-video-track", | 2395 {"disable-background-video-track", |
| 2396 flag_descriptions::kBackgroundVideoTrackOptimizationName, | 2396 flag_descriptions::kBackgroundVideoTrackOptimizationName, |
| 2397 flag_descriptions::kBackgroundVideoTrackOptimizationDescription, kOsAll, | 2397 flag_descriptions::kBackgroundVideoTrackOptimizationDescription, kOsAll, |
| 2398 FEATURE_VALUE_TYPE(media::kBackgroundVideoTrackOptimization)}, | 2398 FEATURE_VALUE_TYPE(media::kBackgroundVideoTrackOptimization)}, |
| 2399 {"enable-new-remote-playback-pipeline", |
| 2400 flag_descriptions::kNewRemotePlaybackPipelineName, |
| 2401 flag_descriptions::kNewRemotePlaybackPipelineDescription, kOsAll, |
| 2402 FEATURE_VALUE_TYPE(media::kNewRemotePlaybackPipeline)}, |
| 2399 #if defined(OS_CHROMEOS) | 2403 #if defined(OS_CHROMEOS) |
| 2400 {"quick-unlock-pin", flag_descriptions::kQuickUnlockPin, | 2404 {"quick-unlock-pin", flag_descriptions::kQuickUnlockPin, |
| 2401 flag_descriptions::kQuickUnlockPinDescription, kOsCrOS, | 2405 flag_descriptions::kQuickUnlockPinDescription, kOsCrOS, |
| 2402 FEATURE_VALUE_TYPE(features::kQuickUnlockPin)}, | 2406 FEATURE_VALUE_TYPE(features::kQuickUnlockPin)}, |
| 2403 {"quick-unlock-fingerprint", flag_descriptions::kQuickUnlockFingerprint, | 2407 {"quick-unlock-fingerprint", flag_descriptions::kQuickUnlockFingerprint, |
| 2404 flag_descriptions::kQuickUnlockFingerprintDescription, kOsCrOS, | 2408 flag_descriptions::kQuickUnlockFingerprintDescription, kOsCrOS, |
| 2405 FEATURE_VALUE_TYPE(features::kQuickUnlockFingerprint)}, | 2409 FEATURE_VALUE_TYPE(features::kQuickUnlockFingerprint)}, |
| 2406 #endif // OS_CHROMEOS | 2410 #endif // OS_CHROMEOS |
| 2407 {"browser-task-scheduler", flag_descriptions::kBrowserTaskSchedulerName, | 2411 {"browser-task-scheduler", flag_descriptions::kBrowserTaskSchedulerName, |
| 2408 flag_descriptions::kBrowserTaskSchedulerDescription, kOsAll, | 2412 flag_descriptions::kBrowserTaskSchedulerDescription, kOsAll, |
| (...skipping 574 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2983 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; | 2987 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; |
| 2984 | 2988 |
| 2985 const FeatureEntry* GetFeatureEntries(size_t* count) { | 2989 const FeatureEntry* GetFeatureEntries(size_t* count) { |
| 2986 *count = arraysize(kFeatureEntries); | 2990 *count = arraysize(kFeatureEntries); |
| 2987 return kFeatureEntries; | 2991 return kFeatureEntries; |
| 2988 } | 2992 } |
| 2989 | 2993 |
| 2990 } // namespace testing | 2994 } // namespace testing |
| 2991 | 2995 |
| 2992 } // namespace about_flags | 2996 } // namespace about_flags |
| OLD | NEW |