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

Unified Diff: chrome/installer/util/user_experiment.cc

Issue 1548153002: Switch to standard integer types in chrome/. (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 | « chrome/installer/util/shell_util_unittest.cc ('k') | chrome/installer/util/util_constants.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/util/user_experiment.cc
diff --git a/chrome/installer/util/user_experiment.cc b/chrome/installer/util/user_experiment.cc
index 6b796a2c4aa0260021dc53b51c979b35e07de0b2..796a79c6af54d45db057bbbaf4e28b8876ac1680 100644
--- a/chrome/installer/util/user_experiment.cc
+++ b/chrome/installer/util/user_experiment.cc
@@ -6,11 +6,14 @@
#include <windows.h>
#include <sddl.h>
+#include <stddef.h>
+#include <stdint.h>
#include <wtsapi32.h>
#include <vector>
#include "base/command_line.h"
#include "base/files/file_path.h"
+#include "base/macros.h"
#include "base/path_service.h"
#include "base/process/launch.h"
#include "base/rand_util.h"
@@ -499,7 +502,7 @@ void InactiveUserToastExperiment(int flavor,
options.GetCommandLineString().find(L" -- " + url));
// Launch chrome now. It will show the toast UI.
- int32 exit_code = 0;
+ int32_t exit_code = 0;
if (!product.LaunchChromeAndWait(application_path, options, &exit_code))
return;
« no previous file with comments | « chrome/installer/util/shell_util_unittest.cc ('k') | chrome/installer/util/util_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698