| Index: content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
|
| diff --git a/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java b/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
|
| index 92b24747bc5e2cb37be81248aa488057a4ddfc6b..0b02602ebddf56fe96c6b7240894b5a81c89eb9d 100644
|
| --- a/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
|
| +++ b/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
|
| @@ -1182,7 +1182,7 @@ public class ContentViewCore implements MotionEventDelegate, NavigationClient {
|
| if (mNativeContentViewCore != 0) {
|
| int pid = nativeGetCurrentRenderProcessId(mNativeContentViewCore);
|
| if (pid > 0) {
|
| - SandboxedProcessLauncher.bindAsHighPriority(pid);
|
| + ChildProcessLauncher.bindAsHighPriority(pid);
|
| }
|
| }
|
| setAccessibilityState(true);
|
| @@ -1197,7 +1197,7 @@ public class ContentViewCore implements MotionEventDelegate, NavigationClient {
|
| if (mNativeContentViewCore != 0) {
|
| int pid = nativeGetCurrentRenderProcessId(mNativeContentViewCore);
|
| if (pid > 0) {
|
| - SandboxedProcessLauncher.unbindAsHighPriority(pid);
|
| + ChildProcessLauncher.unbindAsHighPriority(pid);
|
| }
|
| }
|
| setAccessibilityState(false);
|
| @@ -2134,10 +2134,10 @@ public class ContentViewCore implements MotionEventDelegate, NavigationClient {
|
| private void onRenderProcessSwap(int oldPid, int newPid) {
|
| if (mAttachedToWindow && oldPid != newPid) {
|
| if (oldPid > 0) {
|
| - SandboxedProcessLauncher.unbindAsHighPriority(oldPid);
|
| + ChildProcessLauncher.unbindAsHighPriority(oldPid);
|
| }
|
| if (newPid > 0) {
|
| - SandboxedProcessLauncher.bindAsHighPriority(newPid);
|
| + ChildProcessLauncher.bindAsHighPriority(newPid);
|
| }
|
| }
|
| }
|
|
|