Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(374)

Unified Diff: ui/views/background.h

Issue 1543173002: Switch to standard integer types in ui/views/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/views/background.h
diff --git a/ui/views/background.h b/ui/views/background.h
index 8ecca6e285be1b53291a0ba78952842d1ce199c9..0d7d65cdcd65209d436f565c90e3d8113b33e398 100644
--- a/ui/views/background.h
+++ b/ui/views/background.h
@@ -5,16 +5,17 @@
#ifndef UI_VIEWS_BACKGROUND_H_
#define UI_VIEWS_BACKGROUND_H_
+#include <stddef.h>
+
+#include "base/macros.h"
#include "build/build_config.h"
+#include "third_party/skia/include/core/SkColor.h"
+#include "ui/views/views_export.h"
#if defined(OS_WIN)
#include <windows.h>
#endif // defined(OS_WIN)
-#include "base/basictypes.h"
-#include "third_party/skia/include/core/SkColor.h"
-#include "ui/views/views_export.h"
-
namespace gfx {
class Canvas;
}

Powered by Google App Engine
This is Rietveld 408576698