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

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

Issue 2760093002: Making callbacks in Android ChildProcessLauncher generic. (Closed)
Patch Set: Synced Created 3 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/gpu_process_callback.cc
diff --git a/content/browser/android/gpu_process_callback.cc b/content/browser/android/gpu_process_callback.cc
new file mode 100644
index 0000000000000000000000000000000000000000..23ca55a1fe3e6629338ba9b9239f300633a3b5c1
--- /dev/null
+++ b/content/browser/android/gpu_process_callback.cc
@@ -0,0 +1,51 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "content/browser/android/gpu_process_callback.h"
+
+#include "base/android/scoped_java_ref.h"
+#include "base/android/unguessable_token_android.h"
+#include "content/browser/android/scoped_surface_request_manager.h"
+#include "content/public/browser/browser_thread.h"
+#include "gpu/ipc/common/gpu_surface_tracker.h"
+
+#include "jni/GpuProcessCallback_jni.h"
+
+namespace content {
+
+void CompleteScopedSurfaceRequest(
+ JNIEnv* env,
+ const base::android::JavaParamRef<jclass>& clazz,
+ const base::android::JavaParamRef<jobject>& token,
+ const base::android::JavaParamRef<jobject>& surface) {
+ base::UnguessableToken requestToken =
+ base::android::UnguessableTokenAndroid::FromJavaUnguessableToken(env,
+ token);
+ if (!requestToken) {
+ DLOG(ERROR) << "Received invalid surface request token.";
+ return;
+ }
+
+ DCHECK(!BrowserThread::CurrentlyOn(BrowserThread::UI));
+
+ base::android::ScopedJavaGlobalRef<jobject> jsurface;
+ jsurface.Reset(env, surface);
+ ScopedSurfaceRequestManager::GetInstance()->FulfillScopedSurfaceRequest(
+ requestToken, gl::ScopedJavaSurface(jsurface));
+}
+
+base::android::ScopedJavaLocalRef<jobject> GetViewSurface(
+ JNIEnv* env,
+ const base::android::JavaParamRef<jclass>& jcaller,
+ jint surface_id) {
+ gl::ScopedJavaSurface surface_view =
+ gpu::GpuSurfaceTracker::GetInstance()->AcquireJavaSurface(surface_id);
+ return base::android::ScopedJavaLocalRef<jobject>(surface_view.j_surface());
+}
+
+bool RegisterGpuProcessCallback(JNIEnv* env) {
+ return RegisterNativesImpl(env);
+}
+
+} // namespace content
« no previous file with comments | « content/browser/android/gpu_process_callback.h ('k') | content/browser/child_process_launcher_helper_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698