summaryrefslogtreecommitdiffstats
path: root/media/base/key_systems.cc
diff options
context:
space:
mode:
authoravi <avi@chromium.org>2015-12-22 22:22:36 -0800
committerCommit bot <commit-bot@chromium.org>2015-12-23 06:24:23 +0000
commit1323b9c2b864dd0eabebd64bbc1fb4634c4ed30c (patch)
treeb0ebf20a45fa7d93b1ef0ee9c2708a1c827096fa /media/base/key_systems.cc
parent5e82369982062eb995fda3ee241a529c0fc50dd0 (diff)
downloadchromium_src-1323b9c2b864dd0eabebd64bbc1fb4634c4ed30c.zip
chromium_src-1323b9c2b864dd0eabebd64bbc1fb4634c4ed30c.tar.gz
chromium_src-1323b9c2b864dd0eabebd64bbc1fb4634c4ed30c.tar.bz2
Switch to standard integer types in media/, take 2.
This uses an automated script, so it'll catch things the first pass, done by hand, missed. BUG=138542 TBR=dalecurtis@chromium.org NOPRESUBMIT=true Review URL: https://codereview.chromium.org/1542013004 Cr-Commit-Position: refs/heads/master@{#366712}
Diffstat (limited to 'media/base/key_systems.cc')
-rw-r--r--media/base/key_systems.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/media/base/key_systems.cc b/media/base/key_systems.cc
index dde35d0..744ae2d 100644
--- a/media/base/key_systems.cc
+++ b/media/base/key_systems.cc
@@ -4,12 +4,16 @@
#include "media/base/key_systems.h"
+#include <stddef.h>
+
#include "base/containers/hash_tables.h"
#include "base/lazy_instance.h"
#include "base/logging.h"
+#include "base/macros.h"
#include "base/strings/string_util.h"
#include "base/threading/thread_checker.h"
#include "base/time/time.h"
+#include "build/build_config.h"
#include "media/base/key_system_info.h"
#include "media/base/key_systems_support_uma.h"
#include "media/base/media_client.h"