summaryrefslogtreecommitdiffstats
path: root/chrome/common/chrome_version_info_win.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common/chrome_version_info_win.cc')
-rw-r--r--chrome/common/chrome_version_info_win.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/chrome/common/chrome_version_info_win.cc b/chrome/common/chrome_version_info_win.cc
index 5eda30e..c16cfc6 100644
--- a/chrome/common/chrome_version_info_win.cc
+++ b/chrome/common/chrome_version_info_win.cc
@@ -5,6 +5,7 @@
#include "chrome/common/chrome_version_info.h"
#include "base/base_paths.h"
+#include "base/debug/profiler.h"
#include "base/files/file_path.h"
#include "base/path_service.h"
#include "base/string_util.h"
@@ -28,6 +29,10 @@ std::string VersionInfo::GetVersionStringModifier() {
#if defined(USE_AURA)
channel += L" Aura";
#endif
+#if defined(ADDRESS_SANITIZER)
+ if (base::debug::IsBinaryInstrumented())
+ channel += L" SyzyASan";
+#endif
return UTF16ToASCII(channel);
#else
return std::string();