| Index: ui/android/java/src/org/chromium/ui/base/ViewAndroidDelegate.java
|
| diff --git a/ui/android/java/src/org/chromium/ui/base/ViewAndroidDelegate.java b/ui/android/java/src/org/chromium/ui/base/ViewAndroidDelegate.java
|
| index 8e3dedacbdb50a3cdec821f05733d07df0216809..38ec3faa4790172506c038071c25022baa93f26b 100644
|
| --- a/ui/android/java/src/org/chromium/ui/base/ViewAndroidDelegate.java
|
| +++ b/ui/android/java/src/org/chromium/ui/base/ViewAndroidDelegate.java
|
| @@ -160,6 +160,17 @@ public abstract class ViewAndroidDelegate {
|
| public void startContentIntent(Intent intent, String intentUrl, boolean isMainFrame) {}
|
|
|
| /**
|
| + * Returns the bottom system window inset in pixels. The system window inset represents the area
|
| + * of a full-screen window that is partially or fully obscured by the status bar, navigation
|
| + * bar, IME or other system windows.
|
| + * @return The bottom system window inset.
|
| + */
|
| + @CalledByNative
|
| + public int getSystemWindowInsetBottom() {
|
| + return 0;
|
| + }
|
| +
|
| + /**
|
| * @return container view that the anchor views are added to. May be null.
|
| */
|
| @CalledByNative
|
|
|