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

Unified Diff: android_webview/javatests/src/org/chromium/android_webview/test/TestAwContentsClient.java

Issue 132143003: [abort] Let webkit know we're past the phase where throttles run. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: android_webview/javatests/src/org/chromium/android_webview/test/TestAwContentsClient.java
diff --git a/android_webview/javatests/src/org/chromium/android_webview/test/TestAwContentsClient.java b/android_webview/javatests/src/org/chromium/android_webview/test/TestAwContentsClient.java
index 70c8fc251071ccb2cc6ffbec346191b54e2ac7f7..91cd050c5e559fbad61e64947d7c6a2e8ea48833 100644
--- a/android_webview/javatests/src/org/chromium/android_webview/test/TestAwContentsClient.java
+++ b/android_webview/javatests/src/org/chromium/android_webview/test/TestAwContentsClient.java
@@ -103,6 +103,8 @@ class TestAwContentsClient extends NullContentsClient {
@Override
public boolean onConsoleMessage(ConsoleMessage consoleMessage) {
+ android.util.Log.i("TestAwContentsClient", "onConsoleMessage(" +
+ consoleMessage.message() + ")");
mAddMessageToConsoleHelper.notifyCalled(consoleMessage.messageLevel().ordinal(),
consoleMessage.message(), consoleMessage.lineNumber(), consoleMessage.sourceId());
return false;

Powered by Google App Engine
This is Rietveld 408576698