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

Unified Diff: cc/test/begin_frame_args_test.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/begin_frame_args_test.h ('k') | cc/test/begin_frame_source_test.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/begin_frame_args_test.cc
diff --git a/cc/test/begin_frame_args_test.cc b/cc/test/begin_frame_args_test.cc
index 4c3b5a4e0462c5c1b6631c0533bdfd29f63641c5..8b4dfd3bd97ccb73b11c93653deb11220b76e2c1 100644
--- a/cc/test/begin_frame_args_test.cc
+++ b/cc/test/begin_frame_args_test.cc
@@ -4,6 +4,8 @@
#include "cc/test/begin_frame_args_test.h"
+#include <stdint.h>
+
#include "base/time/time.h"
#include "cc/output/begin_frame_args.h"
@@ -26,9 +28,9 @@ BeginFrameArgs CreateBeginFrameArgsForTesting(
BeginFrameArgs CreateBeginFrameArgsForTesting(
BeginFrameArgs::CreationLocation location,
- int64 frame_time,
- int64 deadline,
- int64 interval) {
+ int64_t frame_time,
+ int64_t deadline,
+ int64_t interval) {
return BeginFrameArgs::Create(
location, base::TimeTicks::FromInternalValue(frame_time),
base::TimeTicks::FromInternalValue(deadline),
@@ -37,9 +39,9 @@ BeginFrameArgs CreateBeginFrameArgsForTesting(
BeginFrameArgs CreateBeginFrameArgsForTesting(
BeginFrameArgs::CreationLocation location,
- int64 frame_time,
- int64 deadline,
- int64 interval,
+ int64_t frame_time,
+ int64_t deadline,
+ int64_t interval,
BeginFrameArgs::BeginFrameArgsType type) {
return BeginFrameArgs::Create(
location, base::TimeTicks::FromInternalValue(frame_time),
« no previous file with comments | « cc/test/begin_frame_args_test.h ('k') | cc/test/begin_frame_source_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698