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

Side by Side Diff: content/public/common/content_features.cc

Issue 1784743002: Migrate *-ime-thread switches to feature API (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@2661
Patch Set: Created 4 years, 9 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
« no previous file with comments | « content/public/common/content_features.h ('k') | content/public/common/content_switches.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 // launched. This is in response to a bug seen on Windows. See 57 // launched. This is in response to a bug seen on Windows. See
58 // https://crbug.com/560446 58 // https://crbug.com/560446
59 const base::Feature kUpdateRendererPriorityOnStartup{ 59 const base::Feature kUpdateRendererPriorityOnStartup{
60 "UpdateRendererPriorityOnStartup", base::FEATURE_ENABLED_BY_DEFAULT}; 60 "UpdateRendererPriorityOnStartup", base::FEATURE_ENABLED_BY_DEFAULT};
61 61
62 // An experimental User Agent Intervention on WebFonts loading. 62 // An experimental User Agent Intervention on WebFonts loading.
63 const base::Feature kWebFontsIntervention{"WebFontsIntervention", 63 const base::Feature kWebFontsIntervention{"WebFontsIntervention",
64 base::FEATURE_DISABLED_BY_DEFAULT}; 64 base::FEATURE_DISABLED_BY_DEFAULT};
65 65
66 #if defined(OS_ANDROID) 66 #if defined(OS_ANDROID)
67 // Use IME's own thread instead of using main UI thread. It also means that
68 // we will not use replica editor and do a round trip to renderer to synchronize
69 // with Blink data.
70 const base::Feature kImeThread{"ImeThread", base::FEATURE_DISABLED_BY_DEFAULT};
71
67 // FeatureList definition for the Seccomp field trial. 72 // FeatureList definition for the Seccomp field trial.
68 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid", 73 const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid",
69 base::FEATURE_DISABLED_BY_DEFAULT}; 74 base::FEATURE_DISABLED_BY_DEFAULT};
70 #endif 75 #endif
71 76
72 } // namespace features 77 } // namespace features
OLDNEW
« no previous file with comments | « content/public/common/content_features.h ('k') | content/public/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698