| Index: webrtc/modules/desktop_capture/desktop_and_cursor_composer.cc
|
| diff --git a/webrtc/modules/desktop_capture/desktop_and_cursor_composer.cc b/webrtc/modules/desktop_capture/desktop_and_cursor_composer.cc
|
| index 0ff3373e823bcd1a89c12ee1db6344d0daf642c7..bd184821cb51abeada827b5a9e6362d1fd802f2b 100644
|
| --- a/webrtc/modules/desktop_capture/desktop_and_cursor_composer.cc
|
| +++ b/webrtc/modules/desktop_capture/desktop_and_cursor_composer.cc
|
| @@ -145,10 +145,10 @@ void DesktopAndCursorComposer::SetSharedMemoryFactory(
|
| desktop_capturer_->SetSharedMemoryFactory(std::move(shared_memory_factory));
|
| }
|
|
|
| -void DesktopAndCursorComposer::CaptureFrame() {
|
| +void DesktopAndCursorComposer::Capture() {
|
| if (mouse_monitor_.get())
|
| mouse_monitor_->Capture();
|
| - desktop_capturer_->CaptureFrame();
|
| + desktop_capturer_->Capture();
|
| }
|
|
|
| void DesktopAndCursorComposer::SetExcludedWindow(WindowId window) {
|
|
|