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

Unified Diff: content/public/common/content_features.cc

Issue 1771223002: Migrate *-ime-thread switches to feature API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: plumb imeadapter instead and fixed nits 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 side-by-side diff with in-line comments
Download patch
Index: content/public/common/content_features.cc
diff --git a/content/public/common/content_features.cc b/content/public/common/content_features.cc
index 4ee7eff8ef91c27b82f5be1a97926874a2bbc13e..38e1a913e2e2c4be3d439f1da4e1fb81ed7b3623 100644
--- a/content/public/common/content_features.cc
+++ b/content/public/common/content_features.cc
@@ -70,6 +70,11 @@ const base::Feature kWebFontsIntervention{"WebFontsIntervention",
base::FEATURE_DISABLED_BY_DEFAULT};
#if defined(OS_ANDROID)
+// Use IME's own thread instead of using main UI thread. It also means that
+// we will not use replica editor and do a round trip to renderer to synchronize
+// with Blink data.
+const base::Feature kImeThread{"ImeThread", base::FEATURE_DISABLED_BY_DEFAULT};
+
// FeatureList definition for the Seccomp field trial.
const base::Feature kSeccompSandboxAndroid{"SeccompSandboxAndroid",
base::FEATURE_DISABLED_BY_DEFAULT};

Powered by Google App Engine
This is Rietveld 408576698