| Index: webrtc/modules/desktop_capture/desktop_capture_options.cc
 | 
| diff --git a/webrtc/modules/desktop_capture/desktop_capture_options.cc b/webrtc/modules/desktop_capture/desktop_capture_options.cc
 | 
| index b7f123b9d137ac11897f6fa362c3838655d09237..8c22376adad9d8d7912a5b0874eac5133fcf524d 100644
 | 
| --- a/webrtc/modules/desktop_capture/desktop_capture_options.cc
 | 
| +++ b/webrtc/modules/desktop_capture/desktop_capture_options.cc
 | 
| @@ -12,21 +12,6 @@
 | 
|  
 | 
|  namespace webrtc {
 | 
|  
 | 
| -DesktopCaptureOptions::DesktopCaptureOptions()
 | 
| -    : use_update_notifications_(true),
 | 
| -      disable_effects_(true) {
 | 
| -#if defined(USE_X11)
 | 
| -  // XDamage is often broken, so don't use it by default.
 | 
| -  use_update_notifications_ = false;
 | 
| -#endif
 | 
| -
 | 
| -#if defined(WEBRTC_WIN)
 | 
| -  allow_use_magnification_api_ = false;
 | 
| -#endif
 | 
| -}
 | 
| -
 | 
| -DesktopCaptureOptions::~DesktopCaptureOptions() {}
 | 
| -
 | 
|  // static
 | 
|  DesktopCaptureOptions DesktopCaptureOptions::CreateDefault() {
 | 
|    DesktopCaptureOptions result;
 | 
| 
 |