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

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

Issue 11778034: Revert 175489 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 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
« no previous file with comments | « no previous file | android_webview/javatests/src/org/chromium/android_webview/test/util/JSUtils.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/javatests/src/org/chromium/android_webview/test/TestAwContentsClient.java
===================================================================
--- android_webview/javatests/src/org/chromium/android_webview/test/TestAwContentsClient.java (revision 175490)
+++ android_webview/javatests/src/org/chromium/android_webview/test/TestAwContentsClient.java (working copy)
@@ -73,6 +73,12 @@
}
@Override
+ public void onEvaluateJavaScriptResult(int id, String jsonResult) {
+ super.onEvaluateJavaScriptResult(id, jsonResult);
+ mOnEvaluateJavaScriptResultHelper.notifyCalled(id, jsonResult);
+ }
+
+ @Override
public boolean onConsoleMessage(ConsoleMessage consoleMessage) {
mAddMessageToConsoleHelper.setLevel(consoleMessage.messageLevel().ordinal());
mAddMessageToConsoleHelper.setMessage(consoleMessage.message());
« no previous file with comments | « no previous file | android_webview/javatests/src/org/chromium/android_webview/test/util/JSUtils.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698