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

Unified Diff: media/base/container_names.h

Issue 1534273002: Switch to standard integer types in media/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more 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: media/base/container_names.h
diff --git a/media/base/container_names.h b/media/base/container_names.h
index af1214fe9d1e8900181cc26cec75e610788473ea..e3885ae4dbe263db54f21229c82786be78fb5deb 100644
--- a/media/base/container_names.h
+++ b/media/base/container_names.h
@@ -5,7 +5,8 @@
#ifndef MEDIA_BASE_CONTAINER_NAMES_H_
#define MEDIA_BASE_CONTAINER_NAMES_H_
-#include "base/basictypes.h"
+#include <stdint.h>
+
#include "media/base/media_export.h"
namespace media {
@@ -62,7 +63,7 @@ enum MediaContainerName {
};
// Determine the container type.
-MEDIA_EXPORT MediaContainerName DetermineContainer(const uint8* buffer,
+MEDIA_EXPORT MediaContainerName DetermineContainer(const uint8_t* buffer,
int buffer_size);
} // namespace container_names

Powered by Google App Engine
This is Rietveld 408576698