| Index: webrtc/modules/rtp_rtcp/source/rtcp_packet/pli.h
 | 
| diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_packet/pli.h b/webrtc/modules/rtp_rtcp/source/rtcp_packet/pli.h
 | 
| index 55678258307da179a79baa0445bab3c98b55bdaa..10fafd229da9f167fa1bf7675efcae83e7f71ef8 100644
 | 
| --- a/webrtc/modules/rtp_rtcp/source/rtcp_packet/pli.h
 | 
| +++ b/webrtc/modules/rtp_rtcp/source/rtcp_packet/pli.h
 | 
| @@ -6,9 +6,7 @@
 | 
|   *  tree. An additional intellectual property rights grant can be found
 | 
|   *  in the file PATENTS.  All contributing project authors may
 | 
|   *  be found in the AUTHORS file in the root of the source tree.
 | 
| - *
 | 
|   */
 | 
| -
 | 
|  #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_PLI_H_
 | 
|  #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_PACKET_PLI_H_
 | 
|  
 | 
| @@ -17,18 +15,16 @@
 | 
|  
 | 
|  namespace webrtc {
 | 
|  namespace rtcp {
 | 
| -
 | 
| +class CommonHeader;
 | 
|  // Picture loss indication (PLI) (RFC 4585).
 | 
|  class Pli : public Psfb {
 | 
|   public:
 | 
|    static const uint8_t kFeedbackMessageType = 1;
 | 
|  
 | 
|    Pli() {}
 | 
| -  virtual ~Pli() {}
 | 
| +  ~Pli() override {}
 | 
|  
 | 
| -  // Parse assumes header is already parsed and validated.
 | 
| -  bool Parse(const RTCPUtility::RtcpCommonHeader& header,
 | 
| -             const uint8_t* payload);  // Size of the payload is in the header.
 | 
| +  bool Parse(const CommonHeader& packet);
 | 
|  
 | 
|   protected:
 | 
|    bool Create(uint8_t* packet,
 | 
| 
 |