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

Unified Diff: content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java

Issue 12321131: Renamed Sandboxed process to Child process (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 7 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
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);
}
}
}

Powered by Google App Engine
This is Rietveld 408576698