lightning-i2p/src/acr/browser/lightning/BrowserController.java
Anthony Restaino 8bead20406 Updated to 3.1.0
Updated to new UI
Added AdBlocker
Added Google Search Suggestions
Tons of other stuff
2014-04-28 15:41:40 -04:00

50 lines
1.1 KiB
Java

/*
* Copyright 2014 A.C.R. Development
*/
package acr.browser.lightning;
import android.app.Activity;
import android.graphics.Bitmap;
import android.net.Uri;
import android.os.Message;
import android.view.View;
import android.webkit.ValueCallback;
import android.webkit.WebChromeClient.CustomViewCallback;
import android.webkit.WebView;
public interface BrowserController {
public void updateUrl(String title);
public void updateProgress(int n);
public void updateHistory(String title, String url);
public void openFileChooser(ValueCallback<Uri> uploadMsg);
public void update();
public void onLongPress();
public void onShowCustomView(View view, int requestedOrientation, CustomViewCallback callback);
public void onHideCustomView();
public Bitmap getDefaultVideoPoster();
public View getVideoLoadingProgressView();
public void onCreateWindow(boolean isUserGesture, Message resultMsg);
public Activity getActivity();
public void hideActionBar();
public void showActionBar();
public void longClickPage(String url);
public void openBookmarkPage(WebView view);
public boolean isActionBarShowing();
}