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

Unified Diff: mojo/edk/js/handle.h

Issue 1543603002: Switch to standard integer types in mojo/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix 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 | « mojo/edk/js/drain_data.cc ('k') | mojo/edk/js/test/run_js_integration_tests.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/edk/js/handle.h
diff --git a/mojo/edk/js/handle.h b/mojo/edk/js/handle.h
index 9fa92b0a29aa46b7223132947a0b20280b5e55d7..3b95b17579de24d2a88a3b172dcf810c07c9c8ab 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<>
« no previous file with comments | « mojo/edk/js/drain_data.cc ('k') | mojo/edk/js/test/run_js_integration_tests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698