Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(595)

Unified Diff: cc/test/test_context_support.cc

Issue 1539203002: Switch to standard integer types in cc/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more includes Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/test/test_context_support.h ('k') | cc/test/test_gpu_memory_buffer_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
}
« no previous file with comments | « cc/test/test_context_support.h ('k') | cc/test/test_gpu_memory_buffer_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698