| Index: webrtc/stream.h | 
| diff --git a/webrtc/stream.h b/webrtc/stream.h | 
| index fd30571726114a0226e85eba14317922109073c9..5afab0f200cfcd27c188c786be01dd4a1b6d2067 100644 | 
| --- a/webrtc/stream.h | 
| +++ b/webrtc/stream.h | 
| @@ -42,7 +42,9 @@ class Stream { | 
| class ReceiveStream : public Stream { | 
| public: | 
| // Called when a RTP packet is received. | 
| -  virtual bool DeliverRtp(const uint8_t* packet, size_t length) = 0; | 
| +  virtual bool DeliverRtp(const uint8_t* packet, | 
| +                          size_t length, | 
| +                          const PacketTime& packet_time) = 0; | 
| }; | 
|  | 
| // Common base class for send streams. | 
|  |