summaryrefslogtreecommitdiff
path: root/src/org/chromium/support_lib_boundary/WebViewProvider.java
blob: 977902df864926fe9128583905ae4590a9e9c605 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2017 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;

import java.lang.reflect.InvocationHandler;

/**
 */
public interface WebViewProvider {
    void insertVisualStateCallback(long requestId,
            InvocationHandler
                    /* org.chromium.sup_lib_boundary.VisualStateCallback */ callbackInvoHandler);
    InvocationHandler /* org.chromium.sup_lib_boundary.WebSettingsInterface */ getSettings();
}