Followup to Rename "UpdateLayerConfig" to "NextFrameConfig"

CL #133202 missed some documentation in vp8_frame_buffer_controller.h.
TBR=sprang@webrtc.org

Bug: None
Change-Id: I634f965c13a1cb179bcdc38f371e1c6e9380e4b3
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/133909
Reviewed-by: Elad Alon <eladalon@webrtc.org>
Commit-Queue: Elad Alon <eladalon@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#27721}
diff --git a/api/video_codecs/vp8_frame_buffer_controller.h b/api/video_codecs/vp8_frame_buffer_controller.h
index e41df8e..2e097cd 100644
--- a/api/video_codecs/vp8_frame_buffer_controller.h
+++ b/api/video_codecs/vp8_frame_buffer_controller.h
@@ -29,15 +29,15 @@
 //
 // This means that in the case of pipelining encoders, it is OK to have a chain
 // of calls such as this:
-// - UpdateLayerConfig(timestampA)
-// - UpdateLayerConfig(timestampB)
+// - NextFrameConfig(timestampA)
+// - NextFrameConfig(timestampB)
 // - PopulateCodecSpecific(timestampA, ...)
-// - UpdateLayerConfig(timestampC)
+// - NextFrameConfig(timestampC)
 // - OnEncodeDone(timestampA, 1234, ...)
-// - UpdateLayerConfig(timestampC)
+// - NextFrameConfig(timestampC)
 // - OnEncodeDone(timestampB, 0, ...)
 // - OnEncodeDone(timestampC, 1234, ...)
-// Note that UpdateLayerConfig() for a new frame can happen before
+// Note that NextFrameConfig() for a new frame can happen before
 // OnEncodeDone() for a previous one, but calls themselves must be both
 // synchronized (e.g. run on a task queue) and in order (per type).
 //
@@ -117,7 +117,7 @@
                                          uint32_t rtp_timestamp) = 0;
 
   // Called after the encode step is done. |rtp_timestamp| must match the
-  // parameter use in the UpdateLayerConfig() call.
+  // parameter use in the NextFrameConfig() call.
   // |is_keyframe| must be true iff the encoder decided to encode this frame as
   // a keyframe.
   // If |info| is not null, the encoder may update |info| with codec specific