summaryrefslogtreecommitdiffstats
path: root/content/gpu/gpu_main.cc
diff options
context:
space:
mode:
authoravi <avi@chromium.org>2015-12-25 15:38:12 -0800
committerCommit bot <commit-bot@chromium.org>2015-12-25 23:39:25 +0000
commit66a07725bcfb4808fff1b806086374ca03f42ea0 (patch)
treebe188b3451bcb4aef0863e9376c5fe7ab4e49dd3 /content/gpu/gpu_main.cc
parentf57136c13874f21a4c6885e49d00d3c45bb427ba (diff)
downloadchromium_src-66a07725bcfb4808fff1b806086374ca03f42ea0.zip
chromium_src-66a07725bcfb4808fff1b806086374ca03f42ea0.tar.gz
chromium_src-66a07725bcfb4808fff1b806086374ca03f42ea0.tar.bz2
Switch to standard integer types in content/.
BUG=138542 TBR=jam@chromium.org Review URL: https://codereview.chromium.org/1544273002 Cr-Commit-Position: refs/heads/master@{#366875}
Diffstat (limited to 'content/gpu/gpu_main.cc')
-rw-r--r--content/gpu/gpu_main.cc11
1 files changed, 6 insertions, 5 deletions
diff --git a/content/gpu/gpu_main.cc b/content/gpu/gpu_main.cc
index f34d82e..0686c57 100644
--- a/content/gpu/gpu_main.cc
+++ b/content/gpu/gpu_main.cc
@@ -2,13 +2,9 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include <stddef.h>
#include <stdlib.h>
-#if defined(OS_WIN)
-#include <dwmapi.h>
-#include <windows.h>
-#endif
-
#include "base/lazy_instance.h"
#include "base/message_loop/message_loop.h"
#include "base/metrics/histogram.h"
@@ -47,6 +43,11 @@
#include "ui/gl/gl_switches.h"
#include "ui/gl/gpu_switching_manager.h"
+#if defined(OS_WIN)
+#include <dwmapi.h>
+#include <windows.h>
+#endif
+
#if defined(OS_ANDROID)
#include "base/trace_event/memory_dump_manager.h"
#include "components/tracing/graphics_memory_dump_provider_android.h"