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

Unified Diff: android_webview/java/src/org/chromium/android_webview/AwContents.java

Issue 570783002: Fix but that ignored startRenderer in WebContentsImpl.java (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove startRenderer Created 6 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 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/AwContentsTest.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/java/src/org/chromium/android_webview/AwContents.java
diff --git a/android_webview/java/src/org/chromium/android_webview/AwContents.java b/android_webview/java/src/org/chromium/android_webview/AwContents.java
index 6c0e38f9c415cb891b4a265423ebbc43881f9bfa..cc2b8af5c5830aff1479379689626659cb81db5d 100644
--- a/android_webview/java/src/org/chromium/android_webview/AwContents.java
+++ b/android_webview/java/src/org/chromium/android_webview/AwContents.java
@@ -1713,14 +1713,12 @@ public class AwContents {
};
}
- mWebContents.evaluateJavaScript(script, jsCallback, false);
+ mWebContents.evaluateJavaScript(script, jsCallback);
}
- /**
- * @see ContentViewCore.evaluateJavaScriptEvenIfNotYetNavigated(String)
- */
+ // TODO(boliu): Remove this once Android side no longer calls this.
public void evaluateJavaScriptEvenIfNotYetNavigated(String script) {
- mWebContents.evaluateJavaScript(script, null, true);
+ mWebContents.evaluateJavaScript(script, null);
}
//--------------------------------------------------------------------------------------------
« no previous file with comments | « no previous file | android_webview/javatests/src/org/chromium/android_webview/test/AwContentsTest.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698