| Index: ppapi/thunk/ppb_graphics_3d_api.h
|
| diff --git a/ppapi/thunk/ppb_graphics_3d_api.h b/ppapi/thunk/ppb_graphics_3d_api.h
|
| index bfbf2a5bed760252cc0cf3ef93184a939e14c476..05a28c929c1ce0ba6f31d5896d455756f9e9c7df 100644
|
| --- a/ppapi/thunk/ppb_graphics_3d_api.h
|
| +++ b/ppapi/thunk/ppb_graphics_3d_api.h
|
| @@ -32,8 +32,10 @@ class PPAPI_THUNK_EXPORT PPB_Graphics3D_API {
|
| virtual int32_t SetAttribs(const int32_t attrib_list[]) = 0;
|
| virtual int32_t GetError() = 0;
|
| virtual int32_t ResizeBuffers(int32_t width, int32_t height) = 0;
|
| - virtual int32_t SwapBuffers(scoped_refptr<TrackedCallback> callback,
|
| - const gpu::SyncToken& sync_token) = 0;
|
| + virtual int32_t SwapBuffers(scoped_refptr<TrackedCallback> callback) = 0;
|
| + virtual int32_t SwapBuffersWithSyncToken(
|
| + scoped_refptr<TrackedCallback> callback,
|
| + const gpu::SyncToken& sync_token) = 0;
|
| virtual int32_t GetAttribMaxValue(int32_t attribute, int32_t* value) = 0;
|
|
|
| // Graphics3DTrusted API.
|
|
|