| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "build/build_config.h" | 5 #include "build/build_config.h" |
| 6 #include "content/public/common/content_features.h" | 6 #include "content/public/common/content_features.h" |
| 7 | 7 |
| 8 namespace features { | 8 namespace features { |
| 9 | 9 |
| 10 // All features in alphabetical order. | 10 // All features in alphabetical order. |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 const base::Feature kMediaDocumentDownloadButton{ | 46 const base::Feature kMediaDocumentDownloadButton{ |
| 47 "MediaDocumentDownloadButton", | 47 "MediaDocumentDownloadButton", |
| 48 base::FEATURE_DISABLED_BY_DEFAULT | 48 base::FEATURE_DISABLED_BY_DEFAULT |
| 49 }; | 49 }; |
| 50 | 50 |
| 51 // Enable the material design playback UI for media elements. This is always | 51 // Enable the material design playback UI for media elements. This is always |
| 52 // on for OS_ANDROID, but may be enabled by experiment for other platforms. | 52 // on for OS_ANDROID, but may be enabled by experiment for other platforms. |
| 53 const base::Feature kNewMediaPlaybackUi{"NewMediaPlaybackUi", | 53 const base::Feature kNewMediaPlaybackUi{"NewMediaPlaybackUi", |
| 54 base::FEATURE_ENABLED_BY_DEFAULT}; | 54 base::FEATURE_ENABLED_BY_DEFAULT}; |
| 55 | 55 |
| 56 // Non-validating reload for desktop. |
| 57 // See https://crbug.com/591245 |
| 58 const base::Feature kNonValidatingReloadOnNormalReload{ |
| 59 "NonValidatingReloadOnNormalReload", |
| 60 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 61 |
| 56 // Non-validating reload on reload-to-refresh-content (e.g. pull-to-refresh). | 62 // Non-validating reload on reload-to-refresh-content (e.g. pull-to-refresh). |
| 57 // See https://crbug.com/558829 | 63 // See https://crbug.com/591245 |
| 58 const base::Feature kNonValidatingReloadOnRefreshContent{ | 64 const base::Feature kNonValidatingReloadOnRefreshContent{ |
| 59 "NonValidatingReloadOnRefreshContentV2", | 65 "NonValidatingReloadOnRefreshContentV2", |
| 60 base::FEATURE_DISABLED_BY_DEFAULT}; | 66 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 61 | 67 |
| 62 // An experiment to optimize resource loading IPC for small resources. | 68 // An experiment to optimize resource loading IPC for small resources. |
| 63 // http://crbug.com/580928 | 69 // http://crbug.com/580928 |
| 64 const base::Feature kOptimizeIPCForSmallResource{ | 70 const base::Feature kOptimizeIPCForSmallResource{ |
| 65 "OptimizeForSmallResource", | 71 "OptimizeForSmallResource", |
| 66 base::FEATURE_DISABLED_BY_DEFAULT}; | 72 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 67 | 73 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 // we will not use replica editor and do a round trip to renderer to synchronize | 112 // we will not use replica editor and do a round trip to renderer to synchronize |
| 107 // with Blink data. | 113 // with Blink data. |
| 108 const base::Feature kImeThread{"ImeThread", base::FEATURE_DISABLED_BY_DEFAULT}; | 114 const base::Feature kImeThread{"ImeThread", base::FEATURE_DISABLED_BY_DEFAULT}; |
| 109 | 115 |
| 110 // FeatureList definition for the Seccomp field trial. | 116 // FeatureList definition for the Seccomp field trial. |
| 111 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid", | 117 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid", |
| 112 base::FEATURE_DISABLED_BY_DEFAULT}; | 118 base::FEATURE_DISABLED_BY_DEFAULT}; |
| 113 #endif | 119 #endif |
| 114 | 120 |
| 115 } // namespace features | 121 } // namespace features |
| OLD | NEW |