Commit fdbb7642 authored by ppi@chromium.org's avatar ppi@chromium.org

Fix Android WebContents ExitFullscreen jni bridge.

Believe it or not, but the extraneous whitespace is confusing the JNI
generator resulting in UnsatisfiedLinkError at runtime.

TBR=jdduke@chromium.org

BUG=395574

Review URL: https://codereview.chromium.org/408833003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@284408 0039d316-1c4b-4281-b951-d872f2087c98
parent d51fb21a
......@@ -149,7 +149,7 @@ import org.chromium.content_public.browser.WebContents;
String url, long nativeInterstitialPageDelegateAndroid);
private native boolean nativeIsShowingInterstitialPage(long nativeWebContentsAndroid);
private native boolean nativeIsRenderWidgetHostViewReady(long nativeWebContentsAndroid);
private native void nativeExitFullscreen(long nativeWebContentsAndroid);
private native void nativeExitFullscreen(long nativeWebContentsAndroid);
private native void nativeUpdateTopControlsState(long nativeWebContentsAndroid,
boolean enableHiding, boolean enableShowing, boolean animate);
private native void nativeShowImeIfNeeded(long nativeWebContentsAndroid);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment