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

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

Issue 292573004: Don't use webmediaplayer to FullscreenController about fullscreen change (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | android_webview/java/src/org/chromium/android_webview/AwWebContentsDelegateAdapter.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 com.google.common.annotations.VisibleForTesting; 7 import com.google.common.annotations.VisibleForTesting;
8 8
9 import org.chromium.base.CalledByNative; 9 import org.chromium.base.CalledByNative;
10 import org.chromium.base.JNINamespace; 10 import org.chromium.base.JNINamespace;
(...skipping 17 matching lines...) Expand all
28 public abstract boolean addNewContents(boolean isDialog, boolean isUserGestu re); 28 public abstract boolean addNewContents(boolean isDialog, boolean isUserGestu re);
29 29
30 @Override 30 @Override
31 @CalledByNative 31 @CalledByNative
32 public abstract void closeContents(); 32 public abstract void closeContents();
33 33
34 @Override 34 @Override
35 @CalledByNative 35 @CalledByNative
36 public abstract void activateContents(); 36 public abstract void activateContents();
37 37
38 @Override
39 @CalledByNative
40 public abstract void toggleFullscreenModeForTab(boolean enterFullscreen);
41
38 // Call in response to a prior runFileChooser call. 42 // Call in response to a prior runFileChooser call.
39 protected static native void nativeFilesSelectedInChooser(int processId, int renderId, 43 protected static native void nativeFilesSelectedInChooser(int processId, int renderId,
40 int mode_flags, String[] filePath); 44 int mode_flags, String[] filePath);
41 } 45 }
OLDNEW
« no previous file with comments | « no previous file | android_webview/java/src/org/chromium/android_webview/AwWebContentsDelegateAdapter.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698