| Index: cc/test/test_context_support.h
|
| diff --git a/cc/test/test_context_support.h b/cc/test/test_context_support.h
|
| index f619ac18281b57694ed8d103610f7233e9982076..d82c7ae43d311091fb0a3526f19b5750bbcefb52 100644
|
| --- a/cc/test/test_context_support.h
|
| +++ b/cc/test/test_context_support.h
|
| @@ -5,8 +5,11 @@
|
| #ifndef CC_TEST_TEST_CONTEXT_SUPPORT_H_
|
| #define CC_TEST_TEST_CONTEXT_SUPPORT_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <vector>
|
|
|
| +#include "base/macros.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "gpu/command_buffer/client/context_support.h"
|
|
|
| @@ -23,17 +26,17 @@ class TestContextSupport : public gpu::ContextSupport {
|
| ~TestContextSupport() override;
|
|
|
| // gpu::ContextSupport implementation.
|
| - void SignalSyncPoint(uint32 sync_point,
|
| + void SignalSyncPoint(uint32_t sync_point,
|
| const base::Closure& callback) override;
|
| void SignalSyncToken(const gpu::SyncToken& sync_token,
|
| 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 SetAggressivelyFreeResources(bool aggressively_free_resources) override;
|
| void Swap() override;
|
| void PartialSwapBuffers(const gfx::Rect& sub_buffer) override;
|
| void CommitOverlayPlanes() override;
|
| - uint32 InsertFutureSyncPointCHROMIUM() override;
|
| - void RetireSyncPointCHROMIUM(uint32 sync_point) override;
|
| + uint32_t InsertFutureSyncPointCHROMIUM() override;
|
| + void RetireSyncPointCHROMIUM(uint32_t sync_point) override;
|
| void ScheduleOverlayPlane(int plane_z_order,
|
| gfx::OverlayTransform plane_transform,
|
| unsigned overlay_texture_id,
|
|
|