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

Side by Side Diff: android_webview/javatests/src/org/chromium/android_webview/test/NullContentsClient.java

Issue 10952029: Remove native side of content_view_client (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 months 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 | Annotate | Revision Log
OLDNEW
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
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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698