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

Unified Diff: content/common/android/surface_texture_manager.h

Issue 685983005: gpu: Associate all GpuMemoryBuffers with unique IDs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase and address feedback Created 6 years, 1 month 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/common/android/surface_texture_manager.h
diff --git a/content/common/android/surface_texture_manager.h b/content/common/android/surface_texture_manager.h
index 6d4e99c624b7743cf16510ad0916c3636ee8b61f..3227f0195993a75e93c57a4f1d9635e8e8107c6d 100644
--- a/content/common/android/surface_texture_manager.h
+++ b/content/common/android/surface_texture_manager.h
@@ -28,9 +28,9 @@ class SurfaceTextureManager {
virtual void UnregisterSurfaceTexture(int surface_texture_id,
int client_id) = 0;
- // Acquire native widget for surface texture.
- virtual gfx::AcceleratedWidget AcquireNativeWidget(int surface_texture_id,
- int client_id) = 0;
+ // Acquire native widget for a registered surface texture.
+ virtual gfx::AcceleratedWidget AcquireNativeWidgetForSurfaceTexture(
+ int surface_texture_id) = 0;
protected:
virtual ~SurfaceTextureManager() {}

Powered by Google App Engine
This is Rietveld 408576698