summaryrefslogtreecommitdiff
path: root/src/org/chromium/support_lib_boundary/JsReplyProxyBoundaryInterface.java
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-01-26 19:56:08 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-01-26 19:56:08 +0000
commiteea0cf6af8b57bc88aa529790991b587ee9f7870 (patch)
treec46cf5c8dcec47a62dc4b0e187a7e533f4ab5d2b /src/org/chromium/support_lib_boundary/JsReplyProxyBoundaryInterface.java
parent2e8b9b6ba018303475d25a227aecc08a08280fb9 (diff)
parentddce2571b16bab7fcba7b31245efba7e929790d1 (diff)
downloadwebview_support_interfaces-eea0cf6af8b57bc88aa529790991b587ee9f7870.tar.gz
Snap for 7681208 from ddce2571b16bab7fcba7b31245efba7e929790d1 to androidx-arch-core-release
Change-Id: I133c07d75add06ff6199db0a394d560a24c8da60
Diffstat (limited to 'src/org/chromium/support_lib_boundary/JsReplyProxyBoundaryInterface.java')
-rw-r--r--src/org/chromium/support_lib_boundary/JsReplyProxyBoundaryInterface.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/org/chromium/support_lib_boundary/JsReplyProxyBoundaryInterface.java b/src/org/chromium/support_lib_boundary/JsReplyProxyBoundaryInterface.java
new file mode 100644
index 0000000..e2da069
--- /dev/null
+++ b/src/org/chromium/support_lib_boundary/JsReplyProxyBoundaryInterface.java
@@ -0,0 +1,12 @@
+// Copyright 2019 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;
+
+/**
+ * Boundary interface for org.chromium.android_webview.WebMessageListener.
+ */
+public interface JsReplyProxyBoundaryInterface extends IsomorphicObjectBoundaryInterface {
+ void postMessage(String message);
+}