| Index: webrtc/modules/desktop_capture/window_capturer_null.cc
 | 
| diff --git a/webrtc/modules/desktop_capture/window_capturer_null.cc b/webrtc/modules/desktop_capture/window_capturer_null.cc
 | 
| index 3afe533e2b088631a841e1e07248266b8db6e604..78165134e07e31d2168d1c2229ea8b8dac5f664a 100755
 | 
| --- a/webrtc/modules/desktop_capture/window_capturer_null.cc
 | 
| +++ b/webrtc/modules/desktop_capture/window_capturer_null.cc
 | 
| @@ -24,14 +24,11 @@ class WindowCapturerNull : public WindowCapturer {
 | 
|    WindowCapturerNull();
 | 
|    ~WindowCapturerNull() override;
 | 
|  
 | 
| -  // WindowCapturer interface.
 | 
| -  bool GetWindowList(WindowList* windows) override;
 | 
| -  bool SelectWindow(WindowId id) override;
 | 
| -  bool BringSelectedWindowToFront() override;
 | 
| -
 | 
|    // DesktopCapturer interface.
 | 
|    void Start(Callback* callback) override;
 | 
|    void CaptureFrame() override;
 | 
| +  bool GetSourceList(SourceList* sources) override;
 | 
| +  bool SelectSource(SourceId id) override;
 | 
|  
 | 
|   private:
 | 
|    Callback* callback_ = nullptr;
 | 
| @@ -42,17 +39,12 @@ class WindowCapturerNull : public WindowCapturer {
 | 
|  WindowCapturerNull::WindowCapturerNull() {}
 | 
|  WindowCapturerNull::~WindowCapturerNull() {}
 | 
|  
 | 
| -bool WindowCapturerNull::GetWindowList(WindowList* windows) {
 | 
| -  // Not implemented yet.
 | 
| -  return false;
 | 
| -}
 | 
| -
 | 
| -bool WindowCapturerNull::SelectWindow(WindowId id) {
 | 
| +bool WindowCapturerNull::GetSourceList(SourceList* sources) {
 | 
|    // Not implemented yet.
 | 
|    return false;
 | 
|  }
 | 
|  
 | 
| -bool WindowCapturerNull::BringSelectedWindowToFront() {
 | 
| +bool WindowCapturerNull::SelectSource(SourceId id) {
 | 
|    // Not implemented yet.
 | 
|    return false;
 | 
|  }
 | 
| 
 |