OLD | NEW |
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.android_webview.test; | 5 package org.chromium.android_webview.test; |
6 | 6 |
7 import android.view.KeyEvent; | 7 import android.view.KeyEvent; |
8 import android.webkit.ConsoleMessage; | 8 import android.webkit.ConsoleMessage; |
9 | 9 |
10 import org.chromium.android_webview.AwContentsClient; | 10 import org.chromium.android_webview.AwContentsClient; |
(...skipping 19 matching lines...) Expand all Loading... |
30 | 30 |
31 @Override | 31 @Override |
32 public boolean onConsoleMessage(ConsoleMessage consoleMessage) { | 32 public boolean onConsoleMessage(ConsoleMessage consoleMessage) { |
33 return false; | 33 return false; |
34 } | 34 } |
35 | 35 |
36 @Override | 36 @Override |
37 public void onReceivedHttpAuthRequest(AwHttpAuthHandler handler, String host
, String realm) { | 37 public void onReceivedHttpAuthRequest(AwHttpAuthHandler handler, String host
, String realm) { |
38 handler.cancel(); | 38 handler.cancel(); |
39 } | 39 } |
| 40 |
| 41 @Override |
| 42 public void onPageStarted(String url) { |
| 43 } |
| 44 |
| 45 @Override |
| 46 public void onPageFinished(String url) { |
| 47 } |
| 48 |
| 49 @Override |
| 50 public void onReceivedError(int errorCode, String description, String failin
gUrl) { |
| 51 } |
40 }; | 52 }; |
OLD | NEW |