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

Unified Diff: cc/output/latency_info_swap_promise.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/output/latency_info_swap_promise.h ('k') | cc/output/layer_quad.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/output/latency_info_swap_promise.cc
diff --git a/cc/output/latency_info_swap_promise.cc b/cc/output/latency_info_swap_promise.cc
index 3b267454076e574b01a510403395d2f3b08aec3c..f20eb2d469b511f822137c7551b48ea471621bbc 100644
--- a/cc/output/latency_info_swap_promise.cc
+++ b/cc/output/latency_info_swap_promise.cc
@@ -4,6 +4,8 @@
#include "cc/output/latency_info_swap_promise.h"
+#include <stdint.h>
+
#include "base/logging.h"
#include "base/trace_event/trace_event.h"
@@ -46,7 +48,7 @@ void LatencyInfoSwapPromise::DidNotSwap(DidNotSwapReason reason) {
// DCHECK(latency_.terminated);
}
-int64 LatencyInfoSwapPromise::TraceId() const {
+int64_t LatencyInfoSwapPromise::TraceId() const {
return latency_.trace_id();
}
« no previous file with comments | « cc/output/latency_info_swap_promise.h ('k') | cc/output/layer_quad.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698