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

Unified Diff: content/public/test/android/javatests/src/org/chromium/content/browser/test/util/TestContentViewClient.java

Issue 11883037: Revert 176773 (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1384/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
Index: content/public/test/android/javatests/src/org/chromium/content/browser/test/util/TestContentViewClient.java
===================================================================
--- content/public/test/android/javatests/src/org/chromium/content/browser/test/util/TestContentViewClient.java (revision 176919)
+++ content/public/test/android/javatests/src/org/chromium/content/browser/test/util/TestContentViewClient.java (working copy)
@@ -35,11 +35,16 @@
}
/**
- * ATTENTION!: When overriding the following method, be sure to call
- * the corresponding method in the super class. Otherwise
+ * ATTENTION!: When overriding the following methods, be sure to call
+ * the corresponding methods in the super class. Otherwise
* {@link CallbackHelper#waitForCallback()} methods will
* stop working!
*/
+ @Override
+ public void onEvaluateJavaScriptResult(int id, String jsonResult) {
+ super.onEvaluateJavaScriptResult(id, jsonResult);
+ mOnEvaluateJavaScriptResultHelper.notifyCalled(id, jsonResult);
+ }
@Override
public void onStartContentIntent(Context context, String contentUrl) {

Powered by Google App Engine
This is Rietveld 408576698