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

Unified Diff: ppapi/shared_impl/ppb_graphics_3d_shared.h

Issue 1801493003: Fix ppb_graphics_3d such that the thunk can be generated again (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « ppapi/proxy/ppb_graphics_3d_proxy.cc ('k') | ppapi/shared_impl/ppb_graphics_3d_shared.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/shared_impl/ppb_graphics_3d_shared.h
diff --git a/ppapi/shared_impl/ppb_graphics_3d_shared.h b/ppapi/shared_impl/ppb_graphics_3d_shared.h
index 3ee595eb0e248e4f0dbd4c7fc1efff93a9c76513..75f09312c0b111ee5c5df0186e52cb077adad1e6 100644
--- a/ppapi/shared_impl/ppb_graphics_3d_shared.h
+++ b/ppapi/shared_impl/ppb_graphics_3d_shared.h
@@ -40,8 +40,9 @@ class PPAPI_SHARED_EXPORT PPB_Graphics3D_Shared
int32_t SetAttribs(const int32_t attrib_list[]) override;
int32_t GetError() override;
int32_t ResizeBuffers(int32_t width, int32_t height) override;
- int32_t SwapBuffers(scoped_refptr<TrackedCallback> callback,
- const gpu::SyncToken& sync_token) override;
+ int32_t SwapBuffers(scoped_refptr<TrackedCallback> callback) override;
+ int32_t SwapBuffersWithSyncToken(scoped_refptr<TrackedCallback> callback,
+ const gpu::SyncToken& sync_token) override;
int32_t GetAttribMaxValue(int32_t attribute, int32_t* value) override;
void* MapTexSubImage2DCHROMIUM(GLenum target,
« no previous file with comments | « ppapi/proxy/ppb_graphics_3d_proxy.cc ('k') | ppapi/shared_impl/ppb_graphics_3d_shared.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698