Chromium Code Reviews| 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 10 matching lines...) Expand all Loading... | |
| 21 | 21 | 
| 22 // Downloads resumption will be controllable via a flag until it's enabled | 22 // Downloads resumption will be controllable via a flag until it's enabled | 
| 23 // permanently. See https://crbug.com/7648 | 23 // permanently. See https://crbug.com/7648 | 
| 24 const base::Feature kDownloadResumption{"DownloadResumption", | 24 const base::Feature kDownloadResumption{"DownloadResumption", | 
| 25 base::FEATURE_DISABLED_BY_DEFAULT}; | 25 base::FEATURE_DISABLED_BY_DEFAULT}; | 
| 26 | 26 | 
| 27 // The Experimental Framework for controlling access to API experiments. | 27 // The Experimental Framework for controlling access to API experiments. | 
| 28 const base::Feature kExperimentalFramework{"ExperimentalFramework", | 28 const base::Feature kExperimentalFramework{"ExperimentalFramework", | 
| 29 base::FEATURE_ENABLED_BY_DEFAULT}; | 29 base::FEATURE_ENABLED_BY_DEFAULT}; | 
| 30 | 30 | 
| 31 #if defined(OS_ANDROID) | |
| 32 // Use IME's own thread instead of using main UI thread. It also means that | |
| 
 
Ted C
2016/03/08 21:49:43
and this should move down too
 
Changwan Ryu
2016/03/09 01:43:56
Done.
 
 | |
| 33 // we will not use replica editor and do a round trip to renderer to synchronize | |
| 34 // with Blink data. | |
| 35 const base::Feature kImeThread{"ImeThread", base::FEATURE_DISABLED_BY_DEFAULT}; | |
| 36 #endif | |
| 37 | |
| 31 // Non-validating reload on reload-to-refresh-content (e.g. pull-to-refresh). | 38 // Non-validating reload on reload-to-refresh-content (e.g. pull-to-refresh). | 
| 32 // See https://crbug.com/558829 | 39 // See https://crbug.com/558829 | 
| 33 const base::Feature kNonValidatingReloadOnRefreshContent{ | 40 const base::Feature kNonValidatingReloadOnRefreshContent{ | 
| 34 "NonValidatingReloadOnRefreshContent", | 41 "NonValidatingReloadOnRefreshContent", | 
| 35 base::FEATURE_DISABLED_BY_DEFAULT}; | 42 base::FEATURE_DISABLED_BY_DEFAULT}; | 
| 36 | 43 | 
| 37 // An experiment to optimize resource loading IPC for small resources. | 44 // An experiment to optimize resource loading IPC for small resources. | 
| 38 // http://crbug.com/580928 | 45 // http://crbug.com/580928 | 
| 39 const base::Feature kOptimizeIPCForSmallResource{ | 46 const base::Feature kOptimizeIPCForSmallResource{ | 
| 40 "OptimizeForSmallResource", | 47 "OptimizeForSmallResource", | 
| (...skipping 28 matching lines...) Expand all Loading... | |
| 69 const base::Feature kWebFontsIntervention{"WebFontsIntervention", | 76 const base::Feature kWebFontsIntervention{"WebFontsIntervention", | 
| 70 base::FEATURE_DISABLED_BY_DEFAULT}; | 77 base::FEATURE_DISABLED_BY_DEFAULT}; | 
| 71 | 78 | 
| 72 #if defined(OS_ANDROID) | 79 #if defined(OS_ANDROID) | 
| 73 // FeatureList definition for the Seccomp field trial. | 80 // FeatureList definition for the Seccomp field trial. | 
| 74 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid", | 81 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid", | 
| 75 base::FEATURE_DISABLED_BY_DEFAULT}; | 82 base::FEATURE_DISABLED_BY_DEFAULT}; | 
| 76 #endif | 83 #endif | 
| 77 | 84 | 
| 78 } // namespace features | 85 } // namespace features | 
| OLD | NEW |