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

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

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.h
diff --git a/chrome/installer/util/registry_entry.h b/chrome/installer/util/registry_entry.h
index 50ad9bd62960f833f25b53a1ffde384abe941752..bf54f0071ec5d7c1c4411daa065a5d6d59f854fc 100644
--- a/chrome/installer/util/registry_entry.h
+++ b/chrome/installer/util/registry_entry.h
@@ -6,6 +6,7 @@
#define CHROME_INSTALLER_UTIL_REGISTRY_ENTRY_H_
#include <windows.h>
+#include <stdint.h>
#include "base/macros.h"
#include "base/strings/string16.h"
@@ -84,13 +85,13 @@ class RegistryEntry {
// registrations outside of HKCR on versions of Windows prior to Win8,
// Chrome's values go in HKLM. This function will make unnecessary (but
// harmless) queries into HKCU in that case.
- bool ExistsInRegistry(uint32 look_for_in) const;
+ bool ExistsInRegistry(uint32_t look_for_in) const;
// Checks if the current registry entry exists in \|key_path_|\|name_|,
// regardless of value. Same lookup rules as ExistsInRegistry.
// Unlike ExistsInRegistry, this returns true if some other value is present
// with the same key.
- bool KeyExistsInRegistry(uint32 look_for_in) const;
+ bool KeyExistsInRegistry(uint32_t look_for_in) const;
const base::string16& key_path() const { return key_path_; }
« no previous file with comments | « chrome/browser/ui/passwords/account_chooser_more_combobox_model.h ('k') | chrome/installer/util/registry_entry.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698