| Index: chrome/browser/win/enumerate_modules_model.cc
|
| diff --git a/chrome/browser/win/enumerate_modules_model.cc b/chrome/browser/win/enumerate_modules_model.cc
|
| index 9b3ceff7533e3a9659ed7ddab60f6c778926aabe..98aaffa7cb5706427dec229b7925b000e0cfe723 100644
|
| --- a/chrome/browser/win/enumerate_modules_model.cc
|
| +++ b/chrome/browser/win/enumerate_modules_model.cc
|
| @@ -518,7 +518,6 @@
|
|
|
| void ModuleEnumerator::ScanImplFinish() {
|
| // TODO(chrisha): Annotate any modules that are suspicious/bad.
|
| - AnnotateBadModules();
|
|
|
| ReportThirdPartyMetrics();
|
|
|
| @@ -690,19 +689,6 @@
|
| if (length < min_length) {
|
| entry->location = new_location;
|
| min_length = length;
|
| - }
|
| - }
|
| - }
|
| -}
|
| -
|
| -void ModuleEnumerator::AnnotateBadModules() {
|
| - for (auto& module : *enumerated_modules_) {
|
| - if (module.name == L"rapportnikko.dll") {
|
| - base::Version version(base::UTF16ToASCII(module.version));
|
| - base::Version good("3.6");
|
| - if (version.CompareTo(good) < 0) {
|
| - module.status = ModuleStatus::CONFIRMED_BAD;
|
| - module.recommended_action = RecommendedAction::UNINSTALL;
|
| }
|
| }
|
| }
|
|
|