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

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

Issue 12321131: Renamed Sandboxed process to Child process (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 10 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/BrowserProcessSurfaceTexture.java
diff --git a/content/public/android/java/src/org/chromium/content/browser/BrowserProcessSurfaceTexture.java b/content/public/android/java/src/org/chromium/content/browser/BrowserProcessSurfaceTexture.java
index e22add14c511ed7b504c532db51f3e173b8d8147..447c918eb718c132c8ba5f40b40f47232e0185a5 100644
--- a/content/public/android/java/src/org/chromium/content/browser/BrowserProcessSurfaceTexture.java
+++ b/content/public/android/java/src/org/chromium/content/browser/BrowserProcessSurfaceTexture.java
@@ -28,7 +28,7 @@ class BrowserProcessSurfaceTexture {
static void establishSurfaceTexturePeer(int pid, int type, SurfaceTexture st, int primaryID,
int secondaryID) {
Surface surface = new Surface(st);
- SandboxedProcessLauncher.establishSurfacePeer(pid, type, surface, primaryID, secondaryID);
+ ChildProcessLauncher.establishSurfacePeer(pid, type, surface, primaryID, secondaryID);
// We need to explicitly release the native resource of our newly created surface
// or the Surface class will print a warning message to the log in its finalizer.

Powered by Google App Engine
This is Rietveld 408576698