| 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)
|
|
|