From f518632b79f50cfee67f61268bddbd1e1c6035c7 Mon Sep 17 00:00:00 2001 From: Gustav Sennton Date: Fri, 9 Mar 2018 18:29:59 +0000 Subject: [WebView Support Library] Pass and fetch list of supported features. We need some way for either side (android support library + chromium) of the webview support library to tell what features the other side of the support library supports. We do this by passing a list of integers across the boundary. These integers will each represent a feature (which will be defined in a class in the boundary interface package). Add a single feature to the list of features to support (visual state callback). Bug: 740082 Change-Id: I791af590cb846d536d01d63649ab6cfffe558ee9 Reviewed-on: https://chromium-review.googlesource.com/941805 Commit-Queue: Gustav Sennton Reviewed-by: Nate Fischer Reviewed-by: Bo Reviewed-by: Richard Coles Cr-Original-Commit-Position: refs/heads/master@{#542169} Cr-Mirrored-From: https://chromium.googlesource.com/chromium/src Cr-Mirrored-Commit: ba016de1efcd69651c043f5958e9c4530c7d36a2 --- BUILD.gn | 2 ++ 1 file changed, 2 insertions(+) (limited to 'BUILD.gn') diff --git a/BUILD.gn b/BUILD.gn index bc1fcb3..dda7b79 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -8,12 +8,14 @@ import("//build/config/android/rules.gni") android_library("boundary_interface_java") { java_files = [ "src/org/chromium/support_lib_boundary/StaticsBoundaryInterface.java", + "src/org/chromium/support_lib_boundary/SupportLibraryInfoBoundaryInterface.java", "src/org/chromium/support_lib_boundary/VisualStateCallbackBoundaryInterface.java", "src/org/chromium/support_lib_boundary/WebSettingsBoundaryInterface.java", "src/org/chromium/support_lib_boundary/WebViewProviderBoundaryInterface.java", "src/org/chromium/support_lib_boundary/WebViewProviderFactoryBoundaryInterface.java", "src/org/chromium/support_lib_boundary/WebkitToCompatConverterBoundaryInterface.java", "src/org/chromium/support_lib_boundary/util/BoundaryInterfaceReflectionUtil.java", + "src/org/chromium/support_lib_boundary/util/Features.java", ] proguard_configs = [ "proguard.flags" ] -- cgit v1.2.3