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

Unified Diff: cc/output/swap_promise.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/output/static_geometry_binding.cc ('k') | cc/output/texture_mailbox_deleter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/output/swap_promise.h
diff --git a/cc/output/swap_promise.h b/cc/output/swap_promise.h
index cf0b88de9ebc5817a4121a79e27b436ebea03086..f3c3fbdde811651bb9a941d307b7372c3103ddee 100644
--- a/cc/output/swap_promise.h
+++ b/cc/output/swap_promise.h
@@ -5,6 +5,8 @@
#ifndef CC_OUTPUT_SWAP_PROMISE_H_
#define CC_OUTPUT_SWAP_PROMISE_H_
+#include <stdint.h>
+
#include "cc/output/compositor_frame_metadata.h"
namespace cc {
@@ -60,7 +62,7 @@ class CC_EXPORT SwapPromise {
// A non-zero trace id identifies a trace flow object that is embedded in the
// swap promise. This can be used for registering additional flow steps to
// visualize the object's path through the system.
- virtual int64 TraceId() const = 0;
+ virtual int64_t TraceId() const = 0;
};
} // namespace cc
« no previous file with comments | « cc/output/static_geometry_binding.cc ('k') | cc/output/texture_mailbox_deleter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698