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

Unified Diff: chrome/common/widevine_cdm_constants.h

Issue 1548153002: Switch to standard integer types in chrome/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « chrome/common/variations/variations_util_unittest.cc ('k') | chrome/common/widevine_cdm_constants.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/widevine_cdm_constants.h
diff --git a/chrome/common/widevine_cdm_constants.h b/chrome/common/widevine_cdm_constants.h
index b626079a11b7d9677087411d31e16881e712d0e2..6a5f78837cacd1c12222cd0f1ee6c9926ae5bf68 100644
--- a/chrome/common/widevine_cdm_constants.h
+++ b/chrome/common/widevine_cdm_constants.h
@@ -5,7 +5,8 @@
#ifndef CHROME_COMMON_WIDEVINE_CDM_CONSTANTS_H_
#define CHROME_COMMON_WIDEVINE_CDM_CONSTANTS_H_
-#include "base/basictypes.h"
+#include <stdint.h>
+
#include "base/files/file_path.h"
// The Widevine CDM adapter and Widevine CDM are in this directory.
@@ -14,6 +15,6 @@ extern const base::FilePath::CharType kWidevineCdmBaseDirectory[];
extern const char kWidevineCdmPluginExtension[];
// Permission bits for Widevine CDM plugin.
-extern const int32 kWidevineCdmPluginPermissions;
+extern const int32_t kWidevineCdmPluginPermissions;
#endif // CHROME_COMMON_WIDEVINE_CDM_CONSTANTS_H_
« no previous file with comments | « chrome/common/variations/variations_util_unittest.cc ('k') | chrome/common/widevine_cdm_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698