Index: content/public/android/java/src/org/chromium/content/app/ChildProcessService.java |
diff --git a/content/public/android/java/src/org/chromium/content/app/ChildProcessService.java b/content/public/android/java/src/org/chromium/content/app/ChildProcessService.java |
index 46c1bf16edc862bf55a4546028f7ef697555d273..f5fcae8101c09fa9012c6d37bbdc6d99aaa6d27d 100644 |
--- a/content/public/android/java/src/org/chromium/content/app/ChildProcessService.java |
+++ b/content/public/android/java/src/org/chromium/content/app/ChildProcessService.java |
@@ -358,14 +358,14 @@ public class ChildProcessService extends Service { |
@SuppressWarnings("unused") |
@CalledByNative |
- private Surface getSurfaceTextureSurface(int surfaceTextureId, int clientId) { |
+ private Surface getSurfaceTextureSurface(int surfaceTextureId) { |
if (mCallback == null) { |
Log.e(TAG, "No callback interface has been provided."); |
return null; |
} |
try { |
- return mCallback.getSurfaceTextureSurface(surfaceTextureId, clientId).getSurface(); |
+ return mCallback.getSurfaceTextureSurface(surfaceTextureId).getSurface(); |
} catch (RemoteException e) { |
Log.e(TAG, "Unable to call getSurfaceTextureSurface: " + e); |
return null; |