Address cpplint issue "Found C++ system header after other header. Should be: toast.h, c system, c++ system, other. [build/include_order] [4]"

This commit is contained in:
Ales Pergl 2017-04-03 10:48:18 +02:00
parent 33b4936a68
commit 20d0bda538
3 changed files with 6 additions and 6 deletions

View file

@ -1,11 +1,11 @@
#define NOMINMAX
#define WIN32_LEAN_AND_MEAN
#include "browser/win/win32_desktop_notifications/desktop_notification_controller.h"
#include "browser/win/win32_desktop_notifications/common.h"
#include "browser/win/win32_desktop_notifications/toast.h"
#include <windowsx.h>
#include <algorithm>
#include <vector>
#include <windowsx.h>
#include "browser/win/win32_desktop_notifications/common.h"
#include "browser/win/win32_desktop_notifications/toast.h"
using namespace std;

View file

@ -1,9 +1,9 @@
#define NOMINMAX
#include "browser/win/win32_desktop_notifications/toast.h"
#include "browser/win/win32_desktop_notifications/common.h"
#include <algorithm>
#include <uxtheme.h>
#include <windowsx.h>
#include <algorithm>
#include "browser/win/win32_desktop_notifications/common.h"
#pragma comment(lib, "msimg32.lib")
#pragma comment(lib, "uxtheme.lib")

View file

@ -1,7 +1,7 @@
#define WIN32_LEAN_AND_MEAN
#include "browser/win/win32_notification.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include <windows.h>
#include "third_party/skia/include/core/SkBitmap.h"
namespace brightray {