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

Unified Diff: webrtc/modules/utility/source/file_player.cc

Issue 2045943004: FilePlayer: Remove unused default values for arguments (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@remove4
Patch Set: Created 4 years, 4 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/modules/utility/include/file_player.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/utility/source/file_player.cc
diff --git a/webrtc/modules/utility/source/file_player.cc b/webrtc/modules/utility/source/file_player.cc
index c6429b8b0d65216e90731ee57c0129277704271f..4b33929ef00696f11111c8d04945bcd2da424596 100644
--- a/webrtc/modules/utility/source/file_player.cc
+++ b/webrtc/modules/utility/source/file_player.cc
@@ -38,14 +38,14 @@ class FilePlayerImpl : public FilePlayer {
uint32_t startPosition,
float volumeScaling,
uint32_t notification,
- uint32_t stopPosition = 0,
- const CodecInst* codecInst = NULL);
+ uint32_t stopPosition,
+ const CodecInst* codecInst);
virtual int32_t StartPlayingFile(InStream& sourceStream,
uint32_t startPosition,
float volumeScaling,
uint32_t notification,
- uint32_t stopPosition = 0,
- const CodecInst* codecInst = NULL);
+ uint32_t stopPosition,
+ const CodecInst* codecInst);
virtual int32_t StopPlayingFile();
virtual bool IsPlayingFile() const;
virtual int32_t GetPlayoutPosition(uint32_t& durationMs);
« no previous file with comments | « webrtc/modules/utility/include/file_player.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698