Missing include in experiments.h
webrtc/typedefs.h should be included in webrtc/experiments.h since the
type uint32_t is being used and it is not indirectly included from this
file.
BUG=
R=mflodman@webrtc.org
Review URL: https://webrtc-codereview.appspot.com/9069004
git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@5607 4adac7df-926f-26a2-2b94-8c16560cd09d
diff --git a/experiments.h b/experiments.h
index 309c7b4..4b5661b 100644
--- a/experiments.h
+++ b/experiments.h
@@ -11,6 +11,8 @@
#ifndef WEBRTC_EXPERIMENTS_H_
#define WEBRTC_EXPERIMENTS_H_
+#include "webrtc/typedefs.h"
+
namespace webrtc {
struct PaddingStrategy {
PaddingStrategy()