diff options
Diffstat (limited to 'media/player/player_wtl.cc')
-rw-r--r-- | media/player/player_wtl.cc | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/media/player/player_wtl.cc b/media/player/player_wtl.cc index 26cbaba..0c2bb6b 100644 --- a/media/player/player_wtl.cc +++ b/media/player/player_wtl.cc @@ -14,14 +14,14 @@ // Note this header must come before other ATL headers. #include "media/player/stdafx.h" -#include <atlcrack.h> // NOLINT -#include <atlctrls.h> // NOLINT -#include <atlctrlw.h> // NOLINT -#include <atldlgs.h> // NOLINT -#include <atlframe.h> // NOLINT -#include <atlmisc.h> // NOLINT -#include <atlprint.h> // NOLINT -#include <atlscrl.h> // NOLINT +#include <atlcrack.h> +#include <atlctrls.h> +#include <atlctrlw.h> +#include <atldlgs.h> +#include <atlframe.h> +#include <atlmisc.h> +#include <atlprint.h> +#include <atlscrl.h> // Note these headers are order sensitive. #include "base/at_exit.h" @@ -45,7 +45,6 @@ CAppModule g_module; int Run(wchar_t* cmd_line, int cmd_show) { - base::AtExitManager exit_manager; CMessageLoop the_loop; g_module.AddMessageLoop(&the_loop); @@ -57,6 +56,7 @@ int Run(wchar_t* cmd_line, int cmd_show) { wnd_main.ShowWindow(cmd_show); + base::AtExitManager exit_manager; wchar_t* url = NULL; if (cmd_line && *cmd_line) { |