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

Unified Diff: chromeos/binder/constants.h

Issue 1540803002: Switch to standard integer types in chromeos/. (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 | « chromeos/binder/command_stream.cc ('k') | chromeos/binder/driver.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/binder/constants.h
diff --git a/chromeos/binder/constants.h b/chromeos/binder/constants.h
index d039b1812125be23b530cf7e299d487392878ece..531021d59e0e9e14ab0b9f01f315cb53d22f1cd8 100644
--- a/chromeos/binder/constants.h
+++ b/chromeos/binder/constants.h
@@ -11,12 +11,12 @@
namespace binder {
// Context manager's handle is always 0.
-const uint32 kContextManagerHandle = 0;
+const uint32_t kContextManagerHandle = 0;
// Transaction code constants.
-const uint32 kFirstTransactionCode = 0x00000001;
-const uint32 kLastTransactionCode = 0x00ffffff;
-const uint32 kPingTransactionCode = BINDER_PACK_CHARS('_', 'P', 'N', 'G');
+const uint32_t kFirstTransactionCode = 0x00000001;
+const uint32_t kLastTransactionCode = 0x00ffffff;
+const uint32_t kPingTransactionCode = BINDER_PACK_CHARS('_', 'P', 'N', 'G');
} // namespace binder
« no previous file with comments | « chromeos/binder/command_stream.cc ('k') | chromeos/binder/driver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698