| Index: cc/test/test_context_support.cc
|
| diff --git a/cc/test/test_context_support.cc b/cc/test/test_context_support.cc
|
| index 0c74ec8fd96dfebd9a04a4fe9c8763acbbe7a35c..bf033fc62a5c99e9d3dbf0752c1b4c324f8580c1 100644
|
| --- a/cc/test/test_context_support.cc
|
| +++ b/cc/test/test_context_support.cc
|
| @@ -4,6 +4,9 @@
|
|
|
| #include "cc/test/test_context_support.h"
|
|
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| +
|
| #include "base/bind.h"
|
| #include "base/location.h"
|
| #include "base/single_thread_task_runner.h"
|
| @@ -16,7 +19,7 @@ TestContextSupport::TestContextSupport()
|
|
|
| TestContextSupport::~TestContextSupport() {}
|
|
|
| -void TestContextSupport::SignalSyncPoint(uint32 sync_point,
|
| +void TestContextSupport::SignalSyncPoint(uint32_t sync_point,
|
| const base::Closure& callback) {
|
| sync_point_callbacks_.push_back(callback);
|
| base::ThreadTaskRunnerHandle::Get()->PostTask(
|
| @@ -32,7 +35,7 @@ void TestContextSupport::SignalSyncToken(const gpu::SyncToken& sync_token,
|
| weak_ptr_factory_.GetWeakPtr()));
|
| }
|
|
|
| -void TestContextSupport::SignalQuery(uint32 query,
|
| +void TestContextSupport::SignalQuery(uint32_t query,
|
| const base::Closure& callback) {
|
| sync_point_callbacks_.push_back(callback);
|
| base::ThreadTaskRunnerHandle::Get()->PostTask(
|
| @@ -68,12 +71,12 @@ void TestContextSupport::SetScheduleOverlayPlaneCallback(
|
| void TestContextSupport::Swap() {
|
| }
|
|
|
| -uint32 TestContextSupport::InsertFutureSyncPointCHROMIUM() {
|
| +uint32_t TestContextSupport::InsertFutureSyncPointCHROMIUM() {
|
| NOTIMPLEMENTED();
|
| return 0;
|
| }
|
|
|
| -void TestContextSupport::RetireSyncPointCHROMIUM(uint32 sync_point) {
|
| +void TestContextSupport::RetireSyncPointCHROMIUM(uint32_t sync_point) {
|
| NOTIMPLEMENTED();
|
| }
|
|
|
|
|