summaryrefslogtreecommitdiff
path: root/src/org/chromium/support_lib_boundary/WebkitToCompatConverterBoundaryInterface.java
blob: 95068cfeb00588b4f3891c5f070959fcf54370f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2018 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 android.webkit.WebSettings;

import java.lang.reflect.InvocationHandler;

/**
 * Boundary interface for a class used for converting webkit objects into Compat (support library)
 * objects.
 */
public interface WebkitToCompatConverterBoundaryInterface {
    /* SupportLibraryWebSettings */ InvocationHandler convertSettings(WebSettings webSettings);
}