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

Unified Diff: cc/test/begin_frame_args_test.h

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/surfaces/surface_sequence.h ('k') | cc/test/begin_frame_args_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/begin_frame_args_test.h
diff --git a/cc/test/begin_frame_args_test.h b/cc/test/begin_frame_args_test.h
index 9ef5d53172c31686b0ed8329c2e86011d2e90ef3..d798094d26ddc5a8401ae7d5d406f4f1891208da 100644
--- a/cc/test/begin_frame_args_test.h
+++ b/cc/test/begin_frame_args_test.h
@@ -5,6 +5,8 @@
#ifndef CC_TEST_BEGIN_FRAME_ARGS_TEST_H_
#define CC_TEST_BEGIN_FRAME_ARGS_TEST_H_
+#include <stdint.h>
+
#include <iosfwd>
#include "base/test/simple_test_tick_clock.h"
@@ -22,14 +24,14 @@ BeginFrameArgs CreateBeginFrameArgsForTesting(
base::TimeTicks frame_time);
BeginFrameArgs CreateBeginFrameArgsForTesting(
BeginFrameArgs::CreationLocation location,
- int64 frame_time,
- int64 deadline,
- int64 interval);
+ int64_t frame_time,
+ int64_t deadline,
+ int64_t interval);
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);
// Creates a BeginFrameArgs using the fake Now value stored on the
« no previous file with comments | « cc/surfaces/surface_sequence.h ('k') | cc/test/begin_frame_args_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698