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

Unified Diff: win8/delegate_execute/delegate_execute_operation.cc

Issue 1540973003: Switch to standard integer types in win8/. (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 | « win8/delegate_execute/delegate_execute_operation.h ('k') | win8/metro_driver/chrome_app_view_ash.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: win8/delegate_execute/delegate_execute_operation.cc
diff --git a/win8/delegate_execute/delegate_execute_operation.cc b/win8/delegate_execute/delegate_execute_operation.cc
index ce64680b7963ae531744c13bd362e74518123fd1..152e9a1e0fae0e773625a4da546c9532efda3213 100644
--- a/win8/delegate_execute/delegate_execute_operation.cc
+++ b/win8/delegate_execute/delegate_execute_operation.cc
@@ -4,6 +4,8 @@
#include "win8/delegate_execute/delegate_execute_operation.h"
+#include <stdint.h>
+
#include "base/command_line.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_split.h"
@@ -57,7 +59,7 @@ base::Process DelegateExecuteOperation::GetParent() const {
if (parts.size() != 3)
return base::Process();
DWORD pid;
- if (!base::StringToUint(parts[2], reinterpret_cast<uint32*>(&pid)))
+ if (!base::StringToUint(parts[2], reinterpret_cast<uint32_t*>(&pid)))
return base::Process();
return base::Process::Open(pid);
}
« no previous file with comments | « win8/delegate_execute/delegate_execute_operation.h ('k') | win8/metro_driver/chrome_app_view_ash.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698