diff options
Diffstat (limited to 'ppapi/cpp')
-rw-r--r-- | ppapi/cpp/dev/graphics_3d_dev.cc | 5 | ||||
-rw-r--r-- | ppapi/cpp/dev/graphics_3d_dev.h | 3 |
2 files changed, 3 insertions, 5 deletions
diff --git a/ppapi/cpp/dev/graphics_3d_dev.cc b/ppapi/cpp/dev/graphics_3d_dev.cc index b1fa037..a15417c 100644 --- a/ppapi/cpp/dev/graphics_3d_dev.cc +++ b/ppapi/cpp/dev/graphics_3d_dev.cc @@ -119,9 +119,8 @@ bool Graphics3D_Dev::MakeCurrent() const { return graphics_3d_f && graphics_3d_f->MakeCurent(pp_resource()); } -bool Graphics3D_Dev::SwapBuffers(const CompletionCallback& cc) const { - return graphics_3d_f && graphics_3d_f->SwapBuffers( - pp_resource(), cc.pp_completion_callback()); +bool Graphics3D_Dev::SwapBuffers() const { + return graphics_3d_f && graphics_3d_f->SwapBuffers(pp_resource()); } } // namespace pp diff --git a/ppapi/cpp/dev/graphics_3d_dev.h b/ppapi/cpp/dev/graphics_3d_dev.h index ac9406b..88fe47d 100644 --- a/ppapi/cpp/dev/graphics_3d_dev.h +++ b/ppapi/cpp/dev/graphics_3d_dev.h @@ -7,7 +7,6 @@ #include "ppapi/c/dev/ppb_graphics_3d_dev.h" #include "ppapi/c/dev/ppb_opengles_dev.h" -#include "ppapi/cpp/completion_callback.h" #include "ppapi/cpp/instance.h" #include "ppapi/cpp/resource.h" @@ -42,7 +41,7 @@ class Graphics3D_Dev : public Resource { const int32_t* attrib_list); bool MakeCurrent() const; - bool SwapBuffers(const CompletionCallback& cc) const; + bool SwapBuffers() const; protected: explicit Graphics3D_Dev(PP_Resource resource_id) : Resource(resource_id) {} |