| OLD | NEW |
| 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.components.web_contents_delegate_android; | 5 package org.chromium.components.web_contents_delegate_android; |
| 6 | 6 |
| 7 import android.view.KeyEvent; | 7 import android.view.KeyEvent; |
| 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 | 138 |
| 139 /** | 139 /** |
| 140 * Report a form resubmission. The overwriter of this function should eventu
ally call | 140 * Report a form resubmission. The overwriter of this function should eventu
ally call |
| 141 * either of ContentViewCore.ContinuePendingReload or ContentViewCore.Cancel
PendingReload. | 141 * either of ContentViewCore.ContinuePendingReload or ContentViewCore.Cancel
PendingReload. |
| 142 */ | 142 */ |
| 143 @CalledByNative | 143 @CalledByNative |
| 144 public void showRepostFormWarningDialog(ContentViewCore contentViewCore) { | 144 public void showRepostFormWarningDialog(ContentViewCore contentViewCore) { |
| 145 } | 145 } |
| 146 | 146 |
| 147 @CalledByNative | 147 @CalledByNative |
| 148 public void toggleFullscreenModeForTab(boolean enterFullscreen) { | 148 public void toggleFullscreenModeForTab(boolean enterFullscreen, boolean isVi
deo) { |
| 149 } | 149 } |
| 150 | 150 |
| 151 @CalledByNative | 151 @CalledByNative |
| 152 public boolean isFullscreenForTabOrPending() { | 152 public boolean isFullscreenForTabOrPending() { |
| 153 return false; | 153 return false; |
| 154 } | 154 } |
| 155 } | 155 } |
| OLD | NEW |