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

Unified Diff: chrome/installer/util/installer_state.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/installer_state.h ('k') | chrome/installer/util/installer_state_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/util/installer_state.cc
diff --git a/chrome/installer/util/installer_state.cc b/chrome/installer/util/installer_state.cc
index 90c868c18e200436f162e37dcc95decf59adaf45..3da5a9967235254ae240a25eea44318d1859a318 100644
--- a/chrome/installer/util/installer_state.cc
+++ b/chrome/installer/util/installer_state.cc
@@ -4,6 +4,8 @@
#include "chrome/installer/util/installer_state.h"
+#include <stddef.h>
+
#include <algorithm>
#include <functional>
#include <utility>
@@ -13,6 +15,7 @@
#include "base/files/file_enumerator.h"
#include "base/files/file_util.h"
#include "base/logging.h"
+#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
@@ -475,9 +478,8 @@ void InstallerState::Clear() {
verbose_logging_ = false;
}
-bool InstallerState::AnyExistsAndIsInUse(
- const InstallationState& machine_state,
- uint32 file_bits) const {
+bool InstallerState::AnyExistsAndIsInUse(const InstallationState& machine_state,
+ uint32_t file_bits) const {
static const wchar_t* const kBinaryFileNames[] = {
kChromeDll,
kChromeFrameDll,
« no previous file with comments | « chrome/installer/util/installer_state.h ('k') | chrome/installer/util/installer_state_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698