blob: 091879ce469abf7343f095b67cdeea3d912b3a85 [file] [log] [blame]
/*
* Copyright 2018 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package androidx.webkit.internal;
import org.chromium.support_lib_boundary.WebSettingsBoundaryInterface;
/**
* Adapter between WebSettingsCompat and
* {@link org.chromium.support_lib_boundary.WebSettingsBoundaryInterface} (the
* corresponding interface shared with the support library glue in the WebView APK).
*/
public class WebSettingsAdapter {
private WebSettingsBoundaryInterface mBoundaryInterface;
public WebSettingsAdapter(WebSettingsBoundaryInterface boundaryInterface) {
mBoundaryInterface = boundaryInterface;
}
/**
* Adapter method for {@link androidx.webkit.WebSettingsCompat#setOffscreenPreRaster}.
*/
public void setOffscreenPreRaster(boolean enabled) {
mBoundaryInterface.setOffscreenPreRaster(enabled);
}
/**
* Adapter method for {@link androidx.webkit.WebSettingsCompat#getOffscreenPreRaster}.
*/
public boolean getOffscreenPreRaster() {
return mBoundaryInterface.getOffscreenPreRaster();
}
/**
* Adapter method for {@link androidx.webkit.WebSettingsCompat#setSafeBrowsingEnabled}.
*/
public void setSafeBrowsingEnabled(boolean enabled) {
mBoundaryInterface.setSafeBrowsingEnabled(enabled);
}
/**
* Adapter method for {@link androidx.webkit.WebSettingsCompat#getSafeBrowsingEnabled}.
*/
public boolean getSafeBrowsingEnabled() {
return mBoundaryInterface.getSafeBrowsingEnabled();
}
/**
* Adapter method for {@link androidx.webkit.WebSettingsCompat#setDisabledActionModeMenuItems}.
*/
public void setDisabledActionModeMenuItems(int menuItems) {
mBoundaryInterface.setDisabledActionModeMenuItems(menuItems);
}
/**
* Adapter method for {@link androidx.webkit.WebSettingsCompat#getDisabledActionModeMenuItems}.
*/
public int getDisabledActionModeMenuItems() {
return mBoundaryInterface.getDisabledActionModeMenuItems();
}
}