| Index: content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
|
| diff --git a/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java b/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
|
| index 9b8cde61ef94cdbf6f262c24e2cc6553a9fc680b..c859a22cc85fbde3c27dbc052d2905d4a318dedd 100644
|
| --- a/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
|
| +++ b/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
|
| @@ -2541,6 +2541,13 @@ public class ContentViewCore implements MotionEventDelegate, NavigationClient {
|
| }
|
|
|
| /**
|
| + * Show or hide the top controls.
|
| + */
|
| + public void showTopControls(boolean show) {
|
| + nativeShowTopControls(mNativeContentViewCore, show);
|
| + }
|
| +
|
| + /**
|
| * @See android.webkit.WebView#pageDown(boolean)
|
| */
|
| public boolean pageDown(boolean bottom) {
|
| @@ -2806,6 +2813,8 @@ public class ContentViewCore implements MotionEventDelegate, NavigationClient {
|
| private native void nativeExitFullscreen(int nativeContentViewCoreImpl);
|
| private native void nativeUpdateTopControlsState(int nativeContentViewCoreImpl,
|
| boolean enableHiding, boolean enableShowing, boolean animate);
|
| + private native void nativeShowTopControls(
|
| + int nativeContentViewCoreImpl, boolean show);
|
|
|
| private native void nativeShowImeIfNeeded(int nativeContentViewCoreImpl);
|
|
|
|
|