blob: 053038f5f7922b12688de47ae4096cfdaef9318f [file] [log] [blame]
// Copyright 2012 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.android_webview;
import org.chromium.base.CalledByNative;
import org.chromium.base.JNINamespace;
import org.chromium.base.VisibleForTesting;
import org.chromium.components.web_contents_delegate_android.WebContentsDelegateAndroid;
/**
* WebView-specific WebContentsDelegate.
* This file is the Java version of the native class of the same name.
* It should contain abstract WebContentsDelegate methods to be implemented by the embedder.
* These methods belong to WebView but are not shared with the Chromium Android port.
*/
@VisibleForTesting
@JNINamespace("android_webview")
public abstract class AwWebContentsDelegate extends WebContentsDelegateAndroid {
// Callback filesSelectedInChooser() when done.
@CalledByNative
public abstract void runFileChooser(int processId, int renderId, int modeFlags,
String acceptTypes, String title, String defaultFilename, boolean capture);
@CalledByNative
public abstract boolean addNewContents(boolean isDialog, boolean isUserGesture);
@Override
@CalledByNative
public abstract void closeContents();
@Override
@CalledByNative
public abstract void activateContents();
@Override
@CalledByNative
public abstract void toggleFullscreenModeForTab(boolean enterFullscreen);
// Call in response to a prior runFileChooser call.
protected static native void nativeFilesSelectedInChooser(int processId, int renderId,
int modeFlags, String[] filePath, String[] displayName);
@Override
@CalledByNative
public abstract void navigationStateChanged(int flags);
}