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

Unified Diff: webrtc/pc/audiomonitor.h

Issue 1919133002: Simple lint fixes (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 8 months 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
« no previous file with comments | « no previous file | webrtc/pc/audiomonitor.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/pc/audiomonitor.h
diff --git a/webrtc/pc/audiomonitor.h b/webrtc/pc/audiomonitor.h
index 741709b60ebfda560c3537a670f9b8a1c3648f75..885c60f08b52e39fe6a07f140d65bb1b745301e7 100644
--- a/webrtc/pc/audiomonitor.h
+++ b/webrtc/pc/audiomonitor.h
@@ -8,10 +8,12 @@
* be found in the AUTHORS file in the root of the source tree.
*/
-#ifndef TALK_SESSION_MEDIA_AUDIOMONITOR_H_
-#define TALK_SESSION_MEDIA_AUDIOMONITOR_H_
+#ifndef WEBRTC_PC_AUDIOMONITOR_H_
+#define WEBRTC_PC_AUDIOMONITOR_H_
#include <vector>
+#include <utility>
+
#include "webrtc/base/sigslot.h"
#include "webrtc/base/thread.h"
#include "webrtc/p2p/base/port.h"
@@ -24,7 +26,7 @@ struct AudioInfo {
int input_level;
int output_level;
typedef std::vector<std::pair<uint32_t, int> > StreamList;
- StreamList active_streams; // ssrcs contributing to output_level
+ StreamList active_streams; // ssrcs contributing to output_level
};
class AudioMonitor : public rtc::MessageHandler,
@@ -53,6 +55,6 @@ class AudioMonitor : public rtc::MessageHandler,
bool monitoring_;
};
-}
+} // namespace cricket
-#endif // TALK_SESSION_MEDIA_AUDIOMONITOR_H_
+#endif // WEBRTC_PC_AUDIOMONITOR_H_
« no previous file with comments | « no previous file | webrtc/pc/audiomonitor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698