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

Unified Diff: base/win/shortcut_unittest.cc

Issue 1550493002: Switch to standard integer types in base/win/. (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
« no previous file with comments | « base/win/shortcut.cc ('k') | base/win/startup_information.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/win/shortcut_unittest.cc
diff --git a/base/win/shortcut_unittest.cc b/base/win/shortcut_unittest.cc
index 794be2364f45f7083498e434fd5bd2b8731bbdc3..c1ebcf185c2f72ae09b660a7de77fb85b640e7db 100644
--- a/base/win/shortcut_unittest.cc
+++ b/base/win/shortcut_unittest.cc
@@ -4,11 +4,14 @@
#include "base/win/shortcut.h"
+#include <stdint.h>
+
#include <string>
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/files/scoped_temp_dir.h"
+#include "base/macros.h"
#include "base/test/test_file_util.h"
#include "base/test/test_shortcut_win.h"
#include "base/win/scoped_com_initializer.h"
@@ -80,7 +83,7 @@ class ShortcutTest : public testing::Test {
} // namespace
TEST_F(ShortcutTest, CreateAndResolveShortcutProperties) {
- uint32 valid_properties = ShortcutProperties::PROPERTIES_BASIC;
+ uint32_t valid_properties = ShortcutProperties::PROPERTIES_BASIC;
if (GetVersion() >= VERSION_WIN7)
valid_properties |= ShortcutProperties::PROPERTIES_WIN7;
« no previous file with comments | « base/win/shortcut.cc ('k') | base/win/startup_information.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698