| 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 384220da057e11d7fc5657fb7bc0838427cda34f..47b09f524e1c686f846ecca33d9ecc56b139fa10 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
|
| @@ -1202,7 +1202,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);
|
| @@ -1217,7 +1217,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);
|
| @@ -2115,10 +2115,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);
|
| }
|
| }
|
| }
|
|
|