| Index: ppapi/cpp/dev/graphics_3d_dev.cc
|
| diff --git a/ppapi/cpp/dev/graphics_3d_dev.cc b/ppapi/cpp/dev/graphics_3d_dev.cc
|
| index a15417ca20854961184dbca4e1923ac375b37189..b1fa037484730a1d4694e5456ab6d5e60a6f8d8a 100644
|
| --- a/ppapi/cpp/dev/graphics_3d_dev.cc
|
| +++ b/ppapi/cpp/dev/graphics_3d_dev.cc
|
| @@ -119,8 +119,9 @@ bool Graphics3D_Dev::MakeCurrent() const {
|
| return graphics_3d_f && graphics_3d_f->MakeCurent(pp_resource());
|
| }
|
|
|
| -bool Graphics3D_Dev::SwapBuffers() const {
|
| - return graphics_3d_f && graphics_3d_f->SwapBuffers(pp_resource());
|
| +bool Graphics3D_Dev::SwapBuffers(const CompletionCallback& cc) const {
|
| + return graphics_3d_f && graphics_3d_f->SwapBuffers(
|
| + pp_resource(), cc.pp_completion_callback());
|
| }
|
|
|
| } // namespace pp
|
|
|