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

Unified Diff: components/spellcheck/common/spellcheck_features.cc

Issue 2284583002: [Android] Add AndroidSpellChecker feature to allow for gradual rollout using finch. (Closed)
Patch Set: Created 4 years, 4 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: components/spellcheck/common/spellcheck_features.cc
diff --git a/components/spellcheck/common/spellcheck_features.cc b/components/spellcheck/common/spellcheck_features.cc
new file mode 100644
index 0000000000000000000000000000000000000000..aed0bcb916c1ea81a053b0856113fd945ca27748
--- /dev/null
+++ b/components/spellcheck/common/spellcheck_features.cc
@@ -0,0 +1,37 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "components/spellcheck/common/spellcheck_features.h"
+
+#include "base/sys_info.h"
+
+namespace spellcheck {
+
+#if defined(ENABLE_SPELLCHECK) && defined(OS_ANDROID)
+
+// Enables/disables Android spellchecker.
+const base::Feature kAndroidSpellChecker{
+ "AndroidSpellChecker", base::FEATURE_DISABLED_BY_DEFAULT};
+
+// Enables/disables Android spellchecker on non low-end Android devices.
+const base::Feature kAndroidSpellCheckerNonLowEnd{
+ "AndroidSpellCheckerNonLowEnd", base::FEATURE_DISABLED_BY_DEFAULT};
+
+bool IsAndroidSpellCheckFeatureEnabled() {
+ if (base::FeatureList::IsEnabled(
+ spellcheck::kAndroidSpellChecker)) {
+ return true;
+ }
+
+ if (base::FeatureList::IsEnabled(
+ spellcheck::kAndroidSpellCheckerNonLowEnd) &&
+ !base::SysInfo::IsLowEndDevice()) {
+ return true;
+ }
+ return false;
+}
+
+#endif // defined(ENABLE_SPELLCHECK) && defined(OS_ANDROID)
+
+} // namespace spellcheck

Powered by Google App Engine
This is Rietveld 408576698