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

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

Issue 2774163002: android: Java ChildProcessLauncherHelper instance (Closed)
Patch Set: explicit AddRef Created 3 years, 9 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 | content/browser/child_process_launcher.cc » ('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/AwRendererPriorityManager.java
diff --git a/android_webview/java/src/org/chromium/android_webview/AwRendererPriorityManager.java b/android_webview/java/src/org/chromium/android_webview/AwRendererPriorityManager.java
index 96db506ceb8416deaed6dfada735225a3c158a95..368831659286435731a9396e195b9d2b8c2ca1bd 100644
--- a/android_webview/java/src/org/chromium/android_webview/AwRendererPriorityManager.java
+++ b/android_webview/java/src/org/chromium/android_webview/AwRendererPriorityManager.java
@@ -19,6 +19,7 @@ public class AwRendererPriorityManager {
private static void setRendererPriority(
int pid, @RendererPriority.RendererPriorityEnum int rendererPriority) {
// TODO(tobiasjs): handle RendererPriority.LOW separately from WAIVED.
- ChildProcessLauncher.setInForeground(pid, rendererPriority == RendererPriority.HIGH);
+ ChildProcessLauncher.getBindingManager().setInForeground(
+ pid, rendererPriority == RendererPriority.HIGH);
}
}
« no previous file with comments | « no previous file | content/browser/child_process_launcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698