| 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 09bc0f53829bc3c7765d86c96f624320db9d1fdd..3401c42bdda991557d602f1eb84188f8d35e8eb1 100644
|
| --- a/ppapi/shared_impl/ppb_graphics_3d_shared.h
|
| +++ b/ppapi/shared_impl/ppb_graphics_3d_shared.h
|
| @@ -5,7 +5,9 @@
|
| #ifndef PPAPI_SHARED_IMPL_GRAPHICS_3D_IMPL_H_
|
| #define PPAPI_SHARED_IMPL_GRAPHICS_3D_IMPL_H_
|
|
|
| -#include "base/basictypes.h"
|
| +#include <stdint.h>
|
| +
|
| +#include "base/macros.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "ppapi/c/pp_completion_callback.h"
|
| #include "ppapi/shared_impl/ppapi_shared_export.h"
|
| @@ -63,11 +65,11 @@ class PPAPI_SHARED_EXPORT PPB_Graphics3D_Shared
|
|
|
| virtual gpu::CommandBuffer* GetCommandBuffer() = 0;
|
| virtual gpu::GpuControl* GetGpuControl() = 0;
|
| - virtual int32 DoSwapBuffers() = 0;
|
| + virtual int32_t DoSwapBuffers() = 0;
|
|
|
| bool HasPendingSwap() const;
|
| - bool CreateGLES2Impl(int32 command_buffer_size,
|
| - int32 transfer_buffer_size,
|
| + bool CreateGLES2Impl(int32_t command_buffer_size,
|
| + int32_t transfer_buffer_size,
|
| gpu::gles2::GLES2Implementation* share_gles2);
|
| void DestroyGLES2Impl();
|
|
|
|
|