summaryrefslogtreecommitdiff
path: root/src/org/chromium/support_lib_boundary/util/Features.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/chromium/support_lib_boundary/util/Features.java')
-rw-r--r--src/org/chromium/support_lib_boundary/util/Features.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/org/chromium/support_lib_boundary/util/Features.java b/src/org/chromium/support_lib_boundary/util/Features.java
new file mode 100644
index 0000000..d74ea55
--- /dev/null
+++ b/src/org/chromium/support_lib_boundary/util/Features.java
@@ -0,0 +1,18 @@
+// Copyright 2018 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.
+
+package org.chromium.support_lib_boundary.util;
+
+/**
+ * Class containing all the features the support library can support.
+ * This class lives in the boundary interface directory so that the Android Support Library and
+ * Chromium can share its definition.
+ */
+public class Features {
+ // This class just contains constants representing features.
+ private Features() {}
+
+ // WebViewCompat.postVisualStateCallback
+ public static final String VISUAL_STATE_CALLBACK = "VISUAL_STATE_CALLBACK";
+}