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

Side by Side Diff: chrome/browser/component/web_contents_delegate_android/java/src/org/chromium/chrome/browser/component/web_contents_delegate_android/WebContentsDelegateAndroid.java

Issue 11360077: Start hooking up "element.requestFullscreen()" in chrome for android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addresses the comment Created 8 years, 1 month 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
« no previous file with comments | « no previous file | chrome/browser/component/web_contents_delegate_android/web_contents_delegate_android.h » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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.chrome.browser.component.web_contents_delegate_android; 5 package org.chromium.chrome.browser.component.web_contents_delegate_android;
6 6
7 import android.graphics.Rect; 7 import android.graphics.Rect;
8 import android.view.KeyEvent; 8 import android.view.KeyEvent;
9 9
10 import org.chromium.base.CalledByNative; 10 import org.chromium.base.CalledByNative;
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 return false; 108 return false;
109 } 109 }
110 110
111 /** 111 /**
112 * Report a form resubmission. The overwriter of this function should eventu ally call 112 * Report a form resubmission. The overwriter of this function should eventu ally call
113 * either of ContentViewCore.ContinuePendingReload or ContentViewCore.Cancel PendingReload. 113 * either of ContentViewCore.ContinuePendingReload or ContentViewCore.Cancel PendingReload.
114 */ 114 */
115 @CalledByNative 115 @CalledByNative
116 public void showRepostFormWarningDialog(ContentViewCore contentViewCore) { 116 public void showRepostFormWarningDialog(ContentViewCore contentViewCore) {
117 } 117 }
118
119 @CalledByNative
120 public void toggleFullscreenModeForTab(boolean enterFullscreen) {
121 }
122
123 @CalledByNative
124 public boolean isFullscreenForTabOrPending() {
125 return false;
126 }
118 } 127 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/component/web_contents_delegate_android/web_contents_delegate_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698