diff options
author | avi <avi@chromium.org> | 2015-12-25 21:27:45 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-12-26 05:28:34 +0000 |
commit | 2729e442b1172c5094503a03fe356c8580bb919d (patch) | |
tree | bd3dc2c3feacd967c68d67c9c208306de942f7f5 /chrome/app/chrome_exe_main_win.cc | |
parent | aa6492d9e85944a38963360ad903bf3eda48c3e3 (diff) | |
download | chromium_src-2729e442b1172c5094503a03fe356c8580bb919d.zip chromium_src-2729e442b1172c5094503a03fe356c8580bb919d.tar.gz chromium_src-2729e442b1172c5094503a03fe356c8580bb919d.tar.bz2 |
Switch to standard integer types in chrome/.
BUG=138542
TBR=thakis@chromium.org
NOPRESUBMIT=true
Review URL: https://codereview.chromium.org/1548153002
Cr-Commit-Position: refs/heads/master@{#366893}
Diffstat (limited to 'chrome/app/chrome_exe_main_win.cc')
-rw-r--r-- | chrome/app/chrome_exe_main_win.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome/app/chrome_exe_main_win.cc b/chrome/app/chrome_exe_main_win.cc index c052283..2102ae1 100644 --- a/chrome/app/chrome_exe_main_win.cc +++ b/chrome/app/chrome_exe_main_win.cc @@ -5,6 +5,7 @@ #include <windows.h> #include <malloc.h> #include <shellscalingapi.h> +#include <stddef.h> #include <tchar.h> #include <algorithm> @@ -15,6 +16,7 @@ #include "base/files/file_path.h" #include "base/lazy_instance.h" #include "base/logging.h" +#include "base/macros.h" #include "base/strings/utf_string_conversions.h" #include "base/time/time.h" #include "base/win/windows_version.h" |