Index: chrome/browser/upgrade_detector_impl.cc |
diff --git a/chrome/browser/upgrade_detector_impl.cc b/chrome/browser/upgrade_detector_impl.cc |
index 7ce3eb03833f30398e701a4260bc8946279622da..58061e305c8f55b2361fc7bc72c012c7b707030a 100644 |
--- a/chrome/browser/upgrade_detector_impl.cc |
+++ b/chrome/browser/upgrade_detector_impl.cc |
@@ -9,6 +9,7 @@ |
#include "base/bind.h" |
#include "base/build_time.h" |
#include "base/command_line.h" |
+#include "base/cpu.h" |
#include "base/files/file_path.h" |
#include "base/memory/scoped_ptr.h" |
#include "base/memory/singleton.h" |
@@ -403,6 +404,11 @@ |
// Don't show the update bubbles to enterprise users (i.e., on a domain). |
if (base::win::IsEnrolledToDomain()) |
return false; |
+ |
+ // On Windows, we don't want to warn about outdated installs when the |
+ // machine doesn't support SSE2, it's been deprecated starting with M35. |
+ if (!base::CPU().has_sse2()) |
+ return false; |
#endif |
} |