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

Unified Diff: content/public/android/java/src/org/chromium/content/common/IChildProcessCallback.aidl

Issue 2268173002: Add StreamTexture resgistration for the Browser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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/common/IChildProcessCallback.aidl
diff --git a/content/public/android/java/src/org/chromium/content/common/IChildProcessCallback.aidl b/content/public/android/java/src/org/chromium/content/common/IChildProcessCallback.aidl
index 36983b0c97379a72b321c56e6b20fe05b51ff294..ba630365c664120b7ad3e6a793c9a411da8deb3c 100644
--- a/content/public/android/java/src/org/chromium/content/common/IChildProcessCallback.aidl
+++ b/content/public/android/java/src/org/chromium/content/common/IChildProcessCallback.aidl
@@ -8,7 +8,6 @@ import org.chromium.content.common.SurfaceWrapper;
import android.view.Surface;
interface IChildProcessCallback {
-
// Conduit to pass a Surface from the sandboxed renderer to the plugin.
void establishSurfacePeer(
int pid, in Surface surface, int primaryID, int secondaryID);
@@ -20,6 +19,11 @@ interface IChildProcessCallback {
void unregisterSurfaceTextureSurface(int surfaceTextureId, int clientId);
+ void registerBrowserSurfaceTextureSurface(int surfaceTextureId,
+ in Surface surface);
+
+ void unregisterBrowserSurfaceTextureSurface(int surfaceTextureId);
+
SurfaceWrapper getSurfaceTextureSurface(int surfaceTextureId);
// Callback to inform native that the download service has accepted or

Powered by Google App Engine
This is Rietveld 408576698