Switch to standard integer types in cryptohome.h.
am: d9ecb3bd87

* commit 'd9ecb3bd87504815d4c58a6a8b9031deb2498d19':
  Switch to standard integer types in cryptohome.h.
diff --git a/constants/cryptohome.h b/constants/cryptohome.h
index 7c5c512..8238aa9 100644
--- a/constants/cryptohome.h
+++ b/constants/cryptohome.h
@@ -5,10 +5,12 @@
 #ifndef CONSTANTS_CRYPTOHOME_H_
 #define CONSTANTS_CRYPTOHOME_H_
 
+#include <stdint.h>
+
 namespace cryptohome {
 
 // Cleanup is trigerred if the amount of free disk space goes below this value.
-const int64 kMinFreeSpaceInBytes = 512 * 1LL << 20;
+const int64_t kMinFreeSpaceInBytes = 512 * 1LL << 20;
 
 }  // namespace cryptohome