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

Unified Diff: ppapi/shared_impl/id_assignment.h

Issue 1548813002: Switch to standard integer types in ppapi/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes 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
Index: ppapi/shared_impl/id_assignment.h
diff --git a/ppapi/shared_impl/id_assignment.h b/ppapi/shared_impl/id_assignment.h
index 4ca8cd17d3e11afc614a9ef5b62ae7e3b16b8662..1444f2f609f3f1df45e436421dc8320cb4dcb819 100644
--- a/ppapi/shared_impl/id_assignment.h
+++ b/ppapi/shared_impl/id_assignment.h
@@ -5,9 +5,10 @@
#ifndef PPAPI_SHARED_IMPL_ID_ASSIGNMENT_H_
#define PPAPI_SHARED_IMPL_ID_ASSIGNMENT_H_
+#include <stdint.h>
+
#include <limits>
-#include "base/basictypes.h"
#include "ppapi/shared_impl/ppapi_shared_export.h"
namespace ppapi {
@@ -24,7 +25,7 @@ enum PPIdType {
PPAPI_SHARED_EXPORT extern const unsigned int kPPIdTypeBits;
-extern const int32 kMaxPPId;
+extern const int32_t kMaxPPId;
// The least significant bits are the type, the rest are the value.
template <typename T>
« no previous file with comments | « ppapi/shared_impl/flash_clipboard_format_registry.cc ('k') | ppapi/shared_impl/media_stream_audio_track_shared.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698