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

Unified Diff: webrtc/pc/currentspeakermonitor.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 | « webrtc/pc/bundlefilter.h ('k') | webrtc/pc/currentspeakermonitor.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/pc/currentspeakermonitor.h
diff --git a/webrtc/pc/currentspeakermonitor.h b/webrtc/pc/currentspeakermonitor.h
index 5ca68ae941634093b9968042fef9553ed9f8ffba..19a61f914feddf06e5a87a8ec2c1fc3f8f326d72 100644
--- a/webrtc/pc/currentspeakermonitor.h
+++ b/webrtc/pc/currentspeakermonitor.h
@@ -11,8 +11,8 @@
// CurrentSpeakerMonitor monitors the audio levels for a session and determines
// which participant is currently speaking.
-#ifndef TALK_SESSION_MEDIA_CURRENTSPEAKERMONITOR_H_
-#define TALK_SESSION_MEDIA_CURRENTSPEAKERMONITOR_H_
+#ifndef WEBRTC_PC_CURRENTSPEAKERMONITOR_H_
+#define WEBRTC_PC_CURRENTSPEAKERMONITOR_H_
#include <map>
@@ -45,7 +45,7 @@ class AudioSourceContext {
// It's recommended that the audio monitor be started with a 100 ms period.
class CurrentSpeakerMonitor : public sigslot::has_slots<> {
public:
- CurrentSpeakerMonitor(AudioSourceContext* audio_source_context);
+ explicit CurrentSpeakerMonitor(AudioSourceContext* audio_source_context);
~CurrentSpeakerMonitor();
void Start();
@@ -90,6 +90,6 @@ class CurrentSpeakerMonitor : public sigslot::has_slots<> {
uint32_t min_time_between_switches_;
};
-}
+} // namespace cricket
-#endif // TALK_SESSION_MEDIA_CURRENTSPEAKERMONITOR_H_
+#endif // WEBRTC_PC_CURRENTSPEAKERMONITOR_H_
« no previous file with comments | « webrtc/pc/bundlefilter.h ('k') | webrtc/pc/currentspeakermonitor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698