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

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

Issue 634643002: content: Out-of-process GPU service support for SurfaceTexture backed GpuMemoryBuffers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase and address some review feedback Created 6 years, 2 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 c6f07586a240b8384a214166991610c552168e11..95866f1257ba36ed0529ee2dcacb20b4cfc69938 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
@@ -15,5 +15,10 @@ interface IChildProcessCallback {
SurfaceWrapper getViewSurface(int surfaceId);
- SurfaceWrapper getSurfaceTextureSurface(int primaryId, int secondaryId);
+ void registerSurfaceTextureSurface(
+ int surfaceTextureId, int clientId, in Surface surface);
+
+ void unregisterSurfaceTextureSurface(int surfaceTextureId, int clientId);
+
+ SurfaceWrapper getSurfaceTextureSurface(int surfaceTextureId, int clientId);
}

Powered by Google App Engine
This is Rietveld 408576698