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

Unified Diff: webrtc/modules/rtp_rtcp/source/ssrc_database.cc

Issue 1505993003: [rtp_rtcp] lint build/include errors fixed (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.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
Index: webrtc/modules/rtp_rtcp/source/ssrc_database.cc
diff --git a/webrtc/modules/rtp_rtcp/source/ssrc_database.cc b/webrtc/modules/rtp_rtcp/source/ssrc_database.cc
index 6fb7c4701a39daf168ea16e78033ebce61395093..45c9c8070c25cab372c1d84a9e912d3feef95a84 100644
--- a/webrtc/modules/rtp_rtcp/source/ssrc_database.cc
+++ b/webrtc/modules/rtp_rtcp/source/ssrc_database.cc
@@ -13,11 +13,13 @@
#include <assert.h>
#include <stdlib.h>
+#include <string>
+
#include "webrtc/system_wrappers/include/critical_section_wrapper.h"
#ifdef _WIN32
- #include <windows.h>
#include <MMSystem.h> //timeGetTime
+ #include <windows.h>
// TODO(hellner): investigate if it is necessary to disable these warnings.
#pragma warning(disable:4311)
@@ -25,8 +27,8 @@
#else
#include <stdio.h>
#include <string.h>
- #include <time.h>
#include <sys/time.h>
+ #include <time.h>
#endif
namespace webrtc {

Powered by Google App Engine
This is Rietveld 408576698