Index: chrome/installer/util/google_chrome_distribution.cc |
diff --git a/chrome/installer/util/google_chrome_distribution.cc b/chrome/installer/util/google_chrome_distribution.cc |
index b11942b93626ed68b1255a611022036e9b401f8b..84aa4be603751ff90328ddbe1e54b430ceb8e94c 100644 |
--- a/chrome/installer/util/google_chrome_distribution.cc |
+++ b/chrome/installer/util/google_chrome_distribution.cc |
@@ -546,19 +546,15 @@ bool GoogleChromeDistribution::GetDelegateExecuteHandlerData( |
string16* type_lib_uuid, |
string16* type_lib_version, |
string16* interface_uuid) { |
- // Chrome's DelegateExecute verb handler is only used for Windows 8 and up. |
- if (base::win::GetVersion() >= base::win::VERSION_WIN8) { |
- if (handler_class_uuid) |
- *handler_class_uuid = kCommandExecuteImplUuid; |
- if (type_lib_uuid) |
- *type_lib_uuid = kDelegateExecuteLibUuid; |
- if (type_lib_version) |
- *type_lib_version = kDelegateExecuteLibVersion; |
- if (interface_uuid) |
- *interface_uuid = kICommandExecuteImplUuid; |
- return true; |
- } |
- return false; |
+ if (handler_class_uuid) |
+ *handler_class_uuid = kCommandExecuteImplUuid; |
+ if (type_lib_uuid) |
+ *type_lib_uuid = kDelegateExecuteLibUuid; |
+ if (type_lib_version) |
+ *type_lib_version = kDelegateExecuteLibVersion; |
+ if (interface_uuid) |
+ *interface_uuid = kICommandExecuteImplUuid; |
+ return true; |
} |
// This method checks if we need to change "ap" key in Google Update to try |