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

Side by Side Diff: components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/WebContentsDelegateAndroid.java

Issue 1381003004: Better distinguish didFinishLoad and didStopLoading (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
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.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
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
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 }
OLDNEW
« no previous file with comments | « components/test_runner/web_test_proxy.cc ('k') | components/web_contents_delegate_android/web_contents_delegate_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698