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

Unified Diff: webrtc/modules/utility/include/file_player.h

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 | « no previous file | webrtc/modules/utility/source/file_player.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/utility/include/file_player.h
diff --git a/webrtc/modules/utility/include/file_player.h b/webrtc/modules/utility/include/file_player.h
index 5f79fd28e21c5598d5ac835e164c305b65204e6b..508c2110a6b579f6f96adfed8bfec1ede52bbda9 100644
--- a/webrtc/modules/utility/include/file_player.h
+++ b/webrtc/modules/utility/include/file_player.h
@@ -57,16 +57,16 @@ class FilePlayer {
uint32_t startPosition,
float volumeScaling,
uint32_t notification,
- uint32_t stopPosition = 0,
- const CodecInst* codecInst = NULL) = 0;
+ uint32_t stopPosition,
+ const CodecInst* codecInst) = 0;
// Note: codecInst is used for pre-encoded files.
virtual int32_t StartPlayingFile(InStream& sourceStream,
uint32_t startPosition,
float volumeScaling,
uint32_t notification,
- uint32_t stopPosition = 0,
- const CodecInst* codecInst = NULL) = 0;
+ uint32_t stopPosition,
+ const CodecInst* codecInst) = 0;
virtual int32_t StopPlayingFile() = 0;
« no previous file with comments | « no previous file | webrtc/modules/utility/source/file_player.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698