summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSayed <elabadysayed@google.com>2023-09-21 11:00:40 +0100
committerSayed <elabadysayed@google.com>2023-09-21 11:00:40 +0100
commit6576b412f23a1aac2dd40a124e81a0cc50196b02 (patch)
treeb08c7e27ae687ad19880e656410c1e8b6552cad9
parent9ba8a14449290f3f996488ac99e92cfedff35b9d (diff)
parentdcc4957ca68e31fc47ab4a7104aa3ae17f56dd86 (diff)
downloadwebview_support_interfaces-6576b412f23a1aac2dd40a124e81a0cc50196b02.tar.gz
[AndroidX Webkit] roll interfaces to dcc4957
This rolls the boundary interfaces for the androidx.webkit module to include the following commit range: sso://android/platform/external/webview_support_interfaces/+log/9ba8a14449290f3f996488ac99e92cfedff35b9d..dcc4957ca68e31fc47ab4a7104aa3ae17f56dd86 Test: N/A Change-Id: I3c94e8a4e9774ce14d71b09f11f19b54d9159975
-rw-r--r--BUILD.gn2
-rw-r--r--src/org/chromium/support_lib_boundary/WebViewProviderBoundaryInterface.java2
2 files changed, 3 insertions, 1 deletions
diff --git a/BUILD.gn b/BUILD.gn
index 7d2687a..a7e8d2a 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -62,7 +62,7 @@ android_apk("boundary_interface_example_apk") {
# against the minSdkVersion of the webkit support library module. As the
# minSdkVersion of the support library increases, so should this value. See
# http://crbug.com/828184 for more details.
- min_sdk_version = 14
+ lint_min_sdk_version = 14
# Explicitly enable lint for this apk.
enable_lint = true
diff --git a/src/org/chromium/support_lib_boundary/WebViewProviderBoundaryInterface.java b/src/org/chromium/support_lib_boundary/WebViewProviderBoundaryInterface.java
index 629f36f..e8b0425 100644
--- a/src/org/chromium/support_lib_boundary/WebViewProviderBoundaryInterface.java
+++ b/src/org/chromium/support_lib_boundary/WebViewProviderBoundaryInterface.java
@@ -28,4 +28,6 @@ public interface WebViewProviderBoundaryInterface {
/* WebViewRendererClient */ InvocationHandler getWebViewRendererClient();
void setWebViewRendererClient(
/* WebViewRendererClient */ InvocationHandler webViewRendererClient);
+ void setProfile(String profileName);
+ /* Profile */ InvocationHandler getProfile();
}