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

Unified Diff: base/win/shortcut.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.h ('k') | base/win/shortcut_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/win/shortcut.cc
diff --git a/base/win/shortcut.cc b/base/win/shortcut.cc
index ccfa2f542b3da90c397fe068a1f110785a761faa..5621b94a539ac1f8d204b098b8de9001d078613d 100644
--- a/base/win/shortcut.cc
+++ b/base/win/shortcut.cc
@@ -183,7 +183,7 @@ bool CreateOrUpdateShortcutLink(const FilePath& shortcut_path,
}
bool ResolveShortcutProperties(const FilePath& shortcut_path,
- uint32 options,
+ uint32_t options,
ShortcutProperties* properties) {
DCHECK(options && properties);
base::ThreadRestrictions::AssertIOAllowed();
@@ -296,7 +296,7 @@ bool ResolveShortcutProperties(const FilePath& shortcut_path,
bool ResolveShortcut(const FilePath& shortcut_path,
FilePath* target_path,
string16* args) {
- uint32 options = 0;
+ uint32_t options = 0;
if (target_path)
options |= ShortcutProperties::PROPERTIES_TARGET;
if (args)
« no previous file with comments | « base/win/shortcut.h ('k') | base/win/shortcut_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698