summaryrefslogtreecommitdiff
path: root/src/org/chromium/support_lib_boundary/WebViewProviderBoundaryInterface.java
blob: 717b3d393ec891f06ab404f7f5e314a0a218d943 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// Copyright 2018 The Chromium Authors
// 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;

import android.net.Uri;
import android.webkit.WebChromeClient;
import android.webkit.WebViewClient;

import java.lang.reflect.InvocationHandler;

/**
 */
public interface WebViewProviderBoundaryInterface {
    void insertVisualStateCallback(
            long requestId, /* VisualStateCallback */ InvocationHandler callback);

    /* WebMessagePort */ InvocationHandler[] createWebMessageChannel();

    void postMessageToMainFrame(/* WebMessage */ InvocationHandler message, Uri targetOrigin);

    void addWebMessageListener(
            String jsObjectName,
            String[] allowedOriginRules,
            /* WebMessageListener */ InvocationHandler listener);

    void removeWebMessageListener(String jsObjectName);

    /* ScriptHandler */ InvocationHandler addDocumentStartJavaScript(
            String script, String[] allowedOriginRules);

    WebViewClient getWebViewClient();

    WebChromeClient getWebChromeClient();

    /* WebViewRenderer */ InvocationHandler getWebViewRenderer();

    /* WebViewRendererClient */ InvocationHandler getWebViewRendererClient();

    void setWebViewRendererClient(
            /* WebViewRendererClient */ InvocationHandler webViewRendererClient);

    void setProfile(String profileName);

    void setAudioMuted(boolean muted);

    boolean isAudioMuted();

    /* Profile */ InvocationHandler getProfile();
}