summaryrefslogtreecommitdiffstats
path: root/chrome/installer/util/compat_checks.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/installer/util/compat_checks.cc')
-rw-r--r--chrome/installer/util/compat_checks.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/installer/util/compat_checks.cc b/chrome/installer/util/compat_checks.cc
index f84a27f..09eb0f2 100644
--- a/chrome/installer/util/compat_checks.cc
+++ b/chrome/installer/util/compat_checks.cc
@@ -4,10 +4,10 @@
#include "chrome/installer/util/compat_checks.h"
-#include "base/registry.h"
#include "base/string_number_conversions.h"
#include "base/string_split.h"
#include "base/string_util.h"
+#include "base/win/registry.h"
namespace {
@@ -15,7 +15,7 @@ namespace {
std::wstring GetSEPVersion() {
const wchar_t kProductKey[] =
L"SOFTWARE\\Symantec\\Symantec Endpoint Protection\\SMC";
- RegKey key(HKEY_LOCAL_MACHINE, kProductKey, KEY_READ);
+ base::win::RegKey key(HKEY_LOCAL_MACHINE, kProductKey, KEY_READ);
std::wstring version_str;
key.ReadValue(L"ProductVersion", &version_str);
return version_str;