From 6c10d125fc21b0d2943f77cb3aa9750aba667fbd Mon Sep 17 00:00:00 2001 From: bridiver Date: Wed, 22 Mar 2017 22:59:41 -0700 Subject: [PATCH] lint fixes --- atom/app/atom_main.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/atom/app/atom_main.cc b/atom/app/atom_main.cc index 7cd8df8084..505acb3574 100644 --- a/atom/app/atom_main.cc +++ b/atom/app/atom_main.cc @@ -8,24 +8,25 @@ #include "atom/app/atom_main_delegate.h" #include "atom/app/uv_task_runner.h" -#include "build/build_config.h" #include "base/at_exit.h" #include "base/command_line.h" #include "base/time/time.h" +#include "build/build_config.h" #include "content/public/app/content_main.h" #if defined(OS_WIN) #include // windows.h must be included first + #include #include #include -#include "content/public/app/sandbox_helper_win.h" -#include "sandbox/win/src/sandbox_types.h" #include "base/win/win_util.h" #include "chrome/install_static/install_details.h" #include "chrome/install_static/install_util.h" #include "chrome/install_static/product_install_details.h" +#include "content/public/app/sandbox_helper_win.h" +#include "sandbox/win/src/sandbox_types.h" #endif // defined(OS_WIN) #if defined(OS_MACOSX)