| 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 6691f649d15a425d0f7a484a676dd98cc6d1e9b0..25520c6712e9022594c893062a62e9940a9daa21 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
|
| @@ -1180,7 +1180,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);
|
| @@ -1195,7 +1195,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);
|
| @@ -2133,10 +2133,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);
|
| }
|
| }
|
| }
|
|
|