From 2e88ac37722757029a9eda1f80f7348f3685307f Mon Sep 17 00:00:00 2001 From: Avi Drissman Date: Mon, 21 Dec 2015 13:14:57 -0500 Subject: Switch to standard integer types in mojo/. BUG=138542 TBR=ben@chromium.org Review URL: https://codereview.chromium.org/1543603002 . Cr-Commit-Position: refs/heads/master@{#366417} --- mojo/edk/js/handle.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'mojo/edk/js/handle.h') diff --git a/mojo/edk/js/handle.h b/mojo/edk/js/handle.h index 9fa92b0..3b95b17 100644 --- a/mojo/edk/js/handle.h +++ b/mojo/edk/js/handle.h @@ -5,6 +5,8 @@ #ifndef MOJO_EDK_JS_HANDLE_H_ #define MOJO_EDK_JS_HANDLE_H_ +#include + #include "base/observer_list.h" #include "gin/converter.h" #include "gin/handle.h" @@ -48,7 +50,7 @@ class HandleWrapper : public gin::Wrappable { namespace gin { // Note: It's important to use this converter rather than the one for -// MojoHandle, since that will do a simple int32 conversion. It's unfortunate +// MojoHandle, since that will do a simple int32_t conversion. It's unfortunate // there's no way to prevent against accidental use. // TODO(mpcomplete): define converters for all Handle subtypes. template<> -- cgit v1.1