| Index: webrtc/modules/pacing/paced_sender.h
 | 
| diff --git a/webrtc/modules/pacing/paced_sender.h b/webrtc/modules/pacing/paced_sender.h
 | 
| index 8879f12d0381abb7c9e6626dd897fb7eba03c9d2..d42b9b384895c4f739da3220d2589d9391ca28e3 100644
 | 
| --- a/webrtc/modules/pacing/paced_sender.h
 | 
| +++ b/webrtc/modules/pacing/paced_sender.h
 | 
| @@ -46,7 +46,7 @@
 | 
|                                    int probe_cluster_id) = 0;
 | 
|      // Called when it's a good time to send a padding data.
 | 
|      // Returns the number of bytes sent.
 | 
| -    virtual size_t TimeToSendPadding(size_t bytes, int probe_cluster_id) = 0;
 | 
| +    virtual size_t TimeToSendPadding(size_t bytes) = 0;
 | 
|  
 | 
|     protected:
 | 
|      virtual ~PacketSender() {}
 | 
| @@ -133,8 +133,7 @@
 | 
|  
 | 
|    bool SendPacket(const paced_sender::Packet& packet, int probe_cluster_id)
 | 
|        EXCLUSIVE_LOCKS_REQUIRED(critsect_);
 | 
| -  void SendPadding(size_t padding_needed, int probe_cluster_id)
 | 
| -      EXCLUSIVE_LOCKS_REQUIRED(critsect_);
 | 
| +  void SendPadding(size_t padding_needed) EXCLUSIVE_LOCKS_REQUIRED(critsect_);
 | 
|  
 | 
|    Clock* const clock_;
 | 
|    PacketSender* const packet_sender_;
 | 
| 
 |