| Index: content/public/android/java/src/org/chromium/content/browser/WebContentsObserverAndroid.java
|
| diff --git a/content/public/android/java/src/org/chromium/content/browser/WebContentsObserverAndroid.java b/content/public/android/java/src/org/chromium/content/browser/WebContentsObserverAndroid.java
|
| index 66e84ad20ceecc8759c93133619a77f29266bed7..e39d9f4f0fcedf3cdd9083dddd86208a2d3f4918 100644
|
| --- a/content/public/android/java/src/org/chromium/content/browser/WebContentsObserverAndroid.java
|
| +++ b/content/public/android/java/src/org/chromium/content/browser/WebContentsObserverAndroid.java
|
| @@ -120,9 +120,11 @@ public abstract class WebContentsObserverAndroid {
|
| * @param frameId A positive, non-zero integer identifying the navigating frame.
|
| * @param validatedUrl The validated URL that is being navigated to.
|
| * @param isMainFrame Whether the load is happening for the main frame.
|
| + * @param isErrorPage Whether the url is the URL of the error page
|
| */
|
| @CalledByNative
|
| - public void didFinishLoad(long frameId, String validatedUrl, boolean isMainFrame) {
|
| + public void didFinishLoad(long frameId, String validatedUrl, boolean isMainFrame,
|
| + boolean isErrorPage) {
|
| }
|
|
|
| /**
|
|
|