diff options
author | Avi Drissman <avi@chromium.org> | 2015-12-21 13:14:57 -0500 |
---|---|---|
committer | Avi Drissman <avi@chromium.org> | 2015-12-21 18:16:36 +0000 |
commit | 2e88ac37722757029a9eda1f80f7348f3685307f (patch) | |
tree | a31cd0fb1beb7dc66a1960732ea73f47c5bcd43e /mojo/edk/js/handle.h | |
parent | 57afbcaf67478de645c7e27040795f209057c244 (diff) | |
download | chromium_src-2e88ac37722757029a9eda1f80f7348f3685307f.zip chromium_src-2e88ac37722757029a9eda1f80f7348f3685307f.tar.gz chromium_src-2e88ac37722757029a9eda1f80f7348f3685307f.tar.bz2 |
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}
Diffstat (limited to 'mojo/edk/js/handle.h')
-rw-r--r-- | mojo/edk/js/handle.h | 4 |
1 files changed, 3 insertions, 1 deletions
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 <stdint.h> + #include "base/observer_list.h" #include "gin/converter.h" #include "gin/handle.h" @@ -48,7 +50,7 @@ class HandleWrapper : public gin::Wrappable<HandleWrapper> { 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<> |