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

Unified Diff: components/browser_watcher/exit_code_watcher_win_unittest.cc

Issue 1546143002: Switch to standard integer types in components/, part 1 of 4. (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
Index: components/browser_watcher/exit_code_watcher_win_unittest.cc
diff --git a/components/browser_watcher/exit_code_watcher_win_unittest.cc b/components/browser_watcher/exit_code_watcher_win_unittest.cc
index df7de86767eeb329fb0e023074cd8cbc1e771047..0a8e170cdc7097b96ba84f8ee39495f869d301da 100644
--- a/components/browser_watcher/exit_code_watcher_win_unittest.cc
+++ b/components/browser_watcher/exit_code_watcher_win_unittest.cc
@@ -4,6 +4,8 @@
#include "components/browser_watcher/exit_code_watcher_win.h"
+#include <stdint.h>
+
#include "base/command_line.h"
#include "base/process/process.h"
#include "base/strings/string16.h"
@@ -84,7 +86,7 @@ class ExitCodeWatcherTest : public testing::Test {
override_manager_.OverrideRegistry(HKEY_CURRENT_USER);
}
- base::Process OpenSelfWithAccess(uint32 access) {
+ base::Process OpenSelfWithAccess(uint32_t access) {
return base::Process::OpenWithAccess(base::GetCurrentProcId(), access);
}
« no previous file with comments | « components/browser_watcher/endsession_watcher_window_win_unittest.cc ('k') | components/browser_watcher/exit_funnel_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698