| 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.annotations.CalledByNative; | 9 import org.chromium.base.annotations.CalledByNative; |
| 10 import org.chromium.base.annotations.JNINamespace; | 10 import org.chromium.base.annotations.JNINamespace; |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 | 46 |
| 47 @CalledByNative | 47 @CalledByNative |
| 48 public void activateContents() { | 48 public void activateContents() { |
| 49 } | 49 } |
| 50 | 50 |
| 51 @CalledByNative | 51 @CalledByNative |
| 52 public void closeContents() { | 52 public void closeContents() { |
| 53 } | 53 } |
| 54 | 54 |
| 55 @CalledByNative | 55 @CalledByNative |
| 56 public void onLoadStarted() { | 56 public void onLoadStarted(boolean toDifferentDocument) { |
| 57 } | 57 } |
| 58 | 58 |
| 59 @CalledByNative | 59 @CalledByNative |
| 60 public void onLoadStopped() { | 60 public void onLoadStopped() { |
| 61 } | 61 } |
| 62 | 62 |
| 63 @CalledByNative | 63 @CalledByNative |
| 64 public void navigationStateChanged(int flags) { | 64 public void navigationStateChanged(int flags) { |
| 65 } | 65 } |
| 66 | 66 |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 | 151 |
| 152 @CalledByNative | 152 @CalledByNative |
| 153 public void toggleFullscreenModeForTab(boolean enterFullscreen) { | 153 public void toggleFullscreenModeForTab(boolean enterFullscreen) { |
| 154 } | 154 } |
| 155 | 155 |
| 156 @CalledByNative | 156 @CalledByNative |
| 157 public boolean isFullscreenForTabOrPending() { | 157 public boolean isFullscreenForTabOrPending() { |
| 158 return false; | 158 return false; |
| 159 } | 159 } |
| 160 } | 160 } |
| OLD | NEW |