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

Unified Diff: chrome/common/pepper_flash.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/partial_circular_buffer_unittest.cc ('k') | chrome/common/pepper_flash.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/pepper_flash.h
diff --git a/chrome/common/pepper_flash.h b/chrome/common/pepper_flash.h
index b679a17942bf846e1d513279ca0fbbf0d2d56125..f1756e75db39ac471fd2ae982ca664d4ffee0c0c 100644
--- a/chrome/common/pepper_flash.h
+++ b/chrome/common/pepper_flash.h
@@ -5,13 +5,14 @@
#ifndef CHROME_COMMON_PEPPER_FLASH_H_
#define CHROME_COMMON_PEPPER_FLASH_H_
-#include "base/basictypes.h"
+#include <stdint.h>
+
#include "base/values.h"
#include "base/version.h"
namespace chrome {
// Permission bits for Pepper Flash.
-extern const int32 kPepperFlashPermissions;
+extern const int32_t kPepperFlashPermissions;
// Returns true if this browser is compatible with the given Pepper Flash
// manifest, with the version specified in the manifest in |version_out|.
« no previous file with comments | « chrome/common/partial_circular_buffer_unittest.cc ('k') | chrome/common/pepper_flash.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698