From ae65c26469b1f838ab0a6c7741572e1e2bc51148 Mon Sep 17 00:00:00 2001 From: Andy Locascio Date: Wed, 17 Jan 2018 17:04:57 -0800 Subject: [PATCH] fix lint --- atom/browser/api/atom_api_desktop_capturer.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/atom/browser/api/atom_api_desktop_capturer.cc b/atom/browser/api/atom_api_desktop_capturer.cc index f5eca03fd53..b5daaaee05f 100644 --- a/atom/browser/api/atom_api_desktop_capturer.cc +++ b/atom/browser/api/atom_api_desktop_capturer.cc @@ -10,10 +10,10 @@ using base::PlatformThreadRef; #include "atom/common/native_mate_converters/gfx_converter.h" #include "base/strings/utf_string_conversions.h" #include "chrome/browser/media/desktop_media_list.h" +#include "content/public/browser/desktop_capture.h" #include "native_mate/dictionary.h" #include "third_party/webrtc/modules/desktop_capture/desktop_capture_options.h" #include "third_party/webrtc/modules/desktop_capture/desktop_capturer.h" -#include "content/public/browser/desktop_capture.h" #include "atom/common/node_includes.h" @@ -50,7 +50,8 @@ DesktopCapturer::~DesktopCapturer() { void DesktopCapturer::StartHandling(bool capture_window, bool capture_screen, const gfx::Size& thumbnail_size) { - webrtc::DesktopCaptureOptions options = content::CreateDesktopCaptureOptions(); + webrtc::DesktopCaptureOptions options = + content::CreateDesktopCaptureOptions(); std::unique_ptr screen_capturer( capture_screen ? webrtc::DesktopCapturer::CreateScreenCapturer(options)