| Index: gpu/gles2_conform_support/egl/display.h
|
| diff --git a/gpu/gles2_conform_support/egl/display.h b/gpu/gles2_conform_support/egl/display.h
|
| index ffc96c4d6d54d95eba7cb31818cba69065fa4efa..66d0d5b5d5f037712bbfff18e9b78e4c62aae9be 100644
|
| --- a/gpu/gles2_conform_support/egl/display.h
|
| +++ b/gpu/gles2_conform_support/egl/display.h
|
| @@ -6,7 +6,10 @@
|
| #define GPU_GLES2_CONFORM_SUPPORT_EGL_DISPLAY_H_
|
|
|
| #include <EGL/egl.h>
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
|
|
| +#include "base/macros.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "gpu/command_buffer/client/gles2_cmd_helper.h"
|
| #include "gpu/command_buffer/client/gpu_control.h"
|
| @@ -88,12 +91,12 @@ class Display : private gpu::GpuControl {
|
| size_t height,
|
| unsigned internalformat,
|
| unsigned usage) override;
|
| - uint32 InsertSyncPoint() override;
|
| - uint32 InsertFutureSyncPoint() override;
|
| - void RetireSyncPoint(uint32 sync_point) override;
|
| - void SignalSyncPoint(uint32 sync_point,
|
| + uint32_t InsertSyncPoint() override;
|
| + uint32_t InsertFutureSyncPoint() override;
|
| + void RetireSyncPoint(uint32_t sync_point) override;
|
| + void SignalSyncPoint(uint32_t sync_point,
|
| const base::Closure& callback) override;
|
| - void SignalQuery(uint32 query, const base::Closure& callback) override;
|
| + void SignalQuery(uint32_t query, const base::Closure& callback) override;
|
| void SetLock(base::Lock*) override;
|
| bool IsGpuChannelLost() override;
|
| gpu::CommandBufferNamespace GetNamespaceID() const override;
|
|
|