Index: chrome/installer/util/duplicate_tree_detector.cc |
diff --git a/chrome/installer/util/duplicate_tree_detector.cc b/chrome/installer/util/duplicate_tree_detector.cc |
index d52dbcfeff62b8851449295af1a93c41073df144..37d4aeb6125b682f4aebefaff2d3af79247bcf5d 100644 |
--- a/chrome/installer/util/duplicate_tree_detector.cc |
+++ b/chrome/installer/util/duplicate_tree_detector.cc |
@@ -23,8 +23,8 @@ bool IsIdenticalFileHierarchy(const base::FilePath& src_path, |
if (!src_info.is_directory && !dest_info.is_directory) { |
// Two files are "identical" if the file sizes are equivalent. |
is_identical = src_info.size == dest_info.size; |
-#ifndef NDEBUG |
- // For Debug builds, also check last modification time (to make sure |
+#if !defined(OFFICIAL_BUILD) |
+ // For developer builds, also check last modification time (to make sure |
// version dir DLLs are replaced on over-install even if the tested change |
// doesn't happen to change a given DLL's size). |
if (is_identical) |