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

Unified Diff: webrtc/modules/bitrate_controller/include/bitrate_controller.h

Issue 2735423002: Mark |Clock*| as |const Clock*| (for some CongestionController and BWE related modules) (Closed)
Patch Set: Rebased Created 3 years, 9 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
Index: webrtc/modules/bitrate_controller/include/bitrate_controller.h
diff --git a/webrtc/modules/bitrate_controller/include/bitrate_controller.h b/webrtc/modules/bitrate_controller/include/bitrate_controller.h
index 032fec5fc7609a15023fe3faf6c841090c6f7c9c..36637a3dc0f9aec59bd01682cf91df7deb95694e 100644
--- a/webrtc/modules/bitrate_controller/include/bitrate_controller.h
+++ b/webrtc/modules/bitrate_controller/include/bitrate_controller.h
@@ -54,11 +54,11 @@ class BitrateController : public Module {
// Deprecated:
// TODO(perkj): BitrateObserver has been deprecated and is not used in WebRTC.
// Remove this method once other other projects does not use it.
- static BitrateController* CreateBitrateController(Clock* clock,
+ static BitrateController* CreateBitrateController(const Clock* clock,
BitrateObserver* observer,
RtcEventLog* event_log);
- static BitrateController* CreateBitrateController(Clock* clock,
+ static BitrateController* CreateBitrateController(const Clock* clock,
RtcEventLog* event_log);
virtual ~BitrateController() {}

Powered by Google App Engine
This is Rietveld 408576698