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

Unified Diff: content/browser/android/child_process_launcher_android.cc

Issue 195583003: Add initial GpuMemoryBufferSurfaceTexture implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add ::InitInstance comments. Created 6 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/browser/android/child_process_launcher_android.cc
diff --git a/content/browser/android/child_process_launcher_android.cc b/content/browser/android/child_process_launcher_android.cc
index cf915e4a42a837de1f7a824c63964e205cbbbe4f..509da225f7178a6c909f47dc2c1d97da253a8a89 100644
--- a/content/browser/android/child_process_launcher_android.cc
+++ b/content/browser/android/child_process_launcher_android.cc
@@ -81,6 +81,7 @@ static void OnChildProcessStarted(JNIEnv*,
void StartChildProcess(
const CommandLine::StringVector& argv,
+ int child_process_id,
const std::vector<content::FileDescriptorInfo>& files_to_register,
const StartChildProcessCallback& callback) {
JNIEnv* env = AttachCurrentThread();
@@ -119,6 +120,7 @@ void StartChildProcess(
Java_ChildProcessLauncher_start(env,
base::android::GetApplicationContext(),
j_argv.obj(),
+ child_process_id,
j_file_ids.obj(),
j_file_fds.obj(),
j_file_auto_close.obj(),
@@ -159,6 +161,18 @@ jobject GetViewSurface(JNIEnv* env, jclass clazz, jint surface_id) {
return CompositorImpl::GetSurface(surface_id);
}
+jobject GetSurfaceTextureSurface(JNIEnv* env,
+ jclass clazz,
+ jint child_process_id,
+ jint surface_texture_id) {
+ // This is a synchronous call from a renderer process and is expected to be
+ // handled on a binder thread. Handling this on the UI thread will lead
+ // to deadlocks.
+ DCHECK(!BrowserThread::CurrentlyOn(BrowserThread::UI));
+ return CompositorImpl::GetSurfaceTextureSurface(child_process_id,
+ surface_texture_id);
+}
+
jboolean IsSingleProcess(JNIEnv* env, jclass clazz) {
return CommandLine::ForCurrentProcess()->HasSwitch(switches::kSingleProcess);
}

Powered by Google App Engine
This is Rietveld 408576698