Index: content/renderer/media/video_frame_compositor.h |
diff --git a/content/renderer/media/video_frame_compositor.h b/content/renderer/media/video_frame_compositor.h |
index 47e6ad19fe69ef1e5c349219f7b811fb1943ed6e..7a8b0a8a20b6a9b08a006d567134619843f51940 100644 |
--- a/content/renderer/media/video_frame_compositor.h |
+++ b/content/renderer/media/video_frame_compositor.h |
@@ -52,18 +52,18 @@ class CONTENT_EXPORT VideoFrameCompositor { |
void UpdateCurrentFrame(const scoped_refptr<media::VideoFrame>& frame); |
// Retrieves the last frame set via UpdateCurrentFrame() for non-compositing |
- // purposes (e.g., painting to a canvas). Frames retrieved in this manner will |
- // not be counted as being composited for frame drop counting. |
+ // purposes (e.g., painting to a canvas). |
// |
// Note that the compositor retrieves frames via the cc::VideoFrameProvider |
// interface instead of using this method. |
scoped_refptr<media::VideoFrame> GetCurrentFrame(); |
- // Returns the number of frames dropped before the compositor was notified as |
- // well as being able to composite the previous frame. |
- uint32 GetFramesDroppedBeforeComposite(); |
+ // Returns the number of frames dropped before the compositor was notified |
+ // of a new frame. |
+ uint32 GetFramesDroppedBeforeCompositorWasNotified(); |
- void SetFramesDroppedBeforeCompositeForTesting(uint32 dropped_frames); |
+ void SetFramesDroppedBeforeCompositorWasNotifiedForTesting( |
+ uint32 dropped_frames); |
private: |
class Internal; |