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

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

Issue 1548993002: Switch to standard integer types in base/strings/. (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: chrome/installer/util/registry_entry.cc
diff --git a/chrome/installer/util/registry_entry.cc b/chrome/installer/util/registry_entry.cc
index 6d51b064f8005385eedc3078334bdecf08e83916..5f4dd31d030f474f2ab520ccf8e37699d4aecd31 100644
--- a/chrome/installer/util/registry_entry.cc
+++ b/chrome/installer/util/registry_entry.cc
@@ -58,7 +58,7 @@ void RegistryEntry::AddToWorkItemList(HKEY root, WorkItemList* items) const {
}
}
-bool RegistryEntry::ExistsInRegistry(uint32 look_for_in) const {
+bool RegistryEntry::ExistsInRegistry(uint32_t look_for_in) const {
DCHECK(look_for_in);
RegistryStatus status = DOES_NOT_EXIST;
@@ -69,7 +69,7 @@ bool RegistryEntry::ExistsInRegistry(uint32 look_for_in) const {
return status == SAME_VALUE;
}
-bool RegistryEntry::KeyExistsInRegistry(uint32 look_for_in) const {
+bool RegistryEntry::KeyExistsInRegistry(uint32_t look_for_in) const {
DCHECK(look_for_in);
RegistryStatus status = DOES_NOT_EXIST;
« no previous file with comments | « chrome/installer/util/registry_entry.h ('k') | chrome/third_party/mozilla_security_manager/nsUsageArrayHelper.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698