Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(130)

Side by Side Diff: android_webview/java/src/org/chromium/android_webview/AwWebContentsDelegate.java

Issue 652673002: NOT FOR REVIEW: Modify ToggleFullscreenMode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fixPowerBlockerNonMedia
Patch Set: Rebase Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 package org.chromium.android_webview; 5 package org.chromium.android_webview;
6 6
7 import org.chromium.base.CalledByNative; 7 import org.chromium.base.CalledByNative;
8 import org.chromium.base.JNINamespace; 8 import org.chromium.base.JNINamespace;
9 import org.chromium.base.VisibleForTesting; 9 import org.chromium.base.VisibleForTesting;
10 import org.chromium.components.web_contents_delegate_android.WebContentsDelegate Android; 10 import org.chromium.components.web_contents_delegate_android.WebContentsDelegate Android;
(...skipping 18 matching lines...) Expand all
29 @Override 29 @Override
30 @CalledByNative 30 @CalledByNative
31 public abstract void closeContents(); 31 public abstract void closeContents();
32 32
33 @Override 33 @Override
34 @CalledByNative 34 @CalledByNative
35 public abstract void activateContents(); 35 public abstract void activateContents();
36 36
37 @Override 37 @Override
38 @CalledByNative 38 @CalledByNative
39 public abstract void toggleFullscreenModeForTab(boolean enterFullscreen); 39 public abstract void toggleFullscreenModeForTab(boolean enterFullscreen, boo lean isVideo);
40 40
41 // Call in response to a prior runFileChooser call. 41 // Call in response to a prior runFileChooser call.
42 protected static native void nativeFilesSelectedInChooser(int processId, int renderId, 42 protected static native void nativeFilesSelectedInChooser(int processId, int renderId,
43 int modeFlags, String[] filePath, String[] displayName); 43 int modeFlags, String[] filePath, String[] displayName);
44 } 44 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698