Index: content/ppapi_plugin/ppapi_thread.cc |
diff --git a/content/ppapi_plugin/ppapi_thread.cc b/content/ppapi_plugin/ppapi_thread.cc |
index 5ca0f83a2856bcba3190e3dff979e4cfe3fa5fdf..e2f6a9bdb06c8d5175ade9bcd5121cd0d9d0292d 100644 |
--- a/content/ppapi_plugin/ppapi_thread.cc |
+++ b/content/ppapi_plugin/ppapi_thread.cc |
@@ -348,7 +348,7 @@ void PpapiThread::OnLoadPlugin(const base::FilePath& path, |
if (base::win::OSInfo::GetInstance()->version() >= |
base::win::VERSION_WIN7) { |
base::CPU cpu; |
- if ((cpu.vendor_name() == "AuthenticAMD") && (cpu.family() > 0x14)) { |
+ if (cpu.vendor_name() == "AuthenticAMD") { |
// The AMD crypto acceleration is only AMD Bulldozer and above. |
#if defined(_WIN64) |
LoadLibraryA("amdhcp64.dll"); |