| Index: webrtc/modules/video_coding/frame_buffer.cc
 | 
| diff --git a/webrtc/modules/video_coding/frame_buffer.cc b/webrtc/modules/video_coding/frame_buffer.cc
 | 
| index b332a00c8dc891dbb5e4086f7f069c2069b577f1..bb8ec937135fece29cdb8fbb2fd797ba1969e6e7 100644
 | 
| --- a/webrtc/modules/video_coding/frame_buffer.cc
 | 
| +++ b/webrtc/modules/video_coding/frame_buffer.cc
 | 
| @@ -66,6 +66,10 @@ bool VCMFrameBuffer::NonReference() const {
 | 
|    return _sessionInfo.NonReference();
 | 
|  }
 | 
|  
 | 
| +std::vector<NaluInfo> VCMFrameBuffer::GetNaluInfos() const {
 | 
| +  return _sessionInfo.GetNaluInfos();
 | 
| +}
 | 
| +
 | 
|  void VCMFrameBuffer::SetGofInfo(const GofInfoVP9& gof_info, size_t idx) {
 | 
|    _sessionInfo.SetGofInfo(gof_info, idx);
 | 
|    // TODO(asapersson): Consider adding hdr->VP9.ref_picture_id for testing.
 | 
| 
 |