Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(91)

Unified Diff: chrome/browser/safe_browsing/download_protection_service.cc

Issue 2900803002: Renaming zip_analyzer_results to archive_analyzer_results (Closed)
Patch Set: updating preprocessor macros Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/safe_browsing/download_protection_service.cc
diff --git a/chrome/browser/safe_browsing/download_protection_service.cc b/chrome/browser/safe_browsing/download_protection_service.cc
index c38104400db5d9515e965fd6d574f0a2e165ce7a..7e4007d453b3e2094cc88c6670959bd6435903ec 100644
--- a/chrome/browser/safe_browsing/download_protection_service.cc
+++ b/chrome/browser/safe_browsing/download_protection_service.cc
@@ -48,7 +48,6 @@
#include "chrome/common/safe_browsing/binary_feature_extractor.h"
#include "chrome/common/safe_browsing/download_protection_util.h"
#include "chrome/common/safe_browsing/file_type_policies.h"
-#include "chrome/common/safe_browsing/zip_analyzer_results.h"
vakh (use Gerrit instead) 2017/05/23 17:34:30 Please #include the new file. You don't want to de
mortonm 2017/05/23 17:53:51 Done.
#include "chrome/common/url_constants.h"
#include "components/data_use_measurement/core/data_use_user_data.h"
#include "components/google/core/browser/google_util.h"
@@ -720,7 +719,7 @@ class DownloadProtectionService::CheckClientDownloadRequest
analyzer_->Start();
}
- void OnZipAnalysisFinished(const zip_analyzer::Results& results) {
+ void OnZipAnalysisFinished(const ArchiveAnalyzerResults& results) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
DCHECK_EQ(ClientDownloadRequest::ZIPPED_EXECUTABLE, type_);
if (!service_)
@@ -779,7 +778,7 @@ class DownloadProtectionService::CheckClientDownloadRequest
dmg_analysis_start_time_ = base::TimeTicks::Now();
}
- void OnDmgAnalysisFinished(const zip_analyzer::Results& results) {
+ void OnDmgAnalysisFinished(const ArchiveAnalyzerResults& results) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
DCHECK_EQ(ClientDownloadRequest::MAC_EXECUTABLE, type_);
if (!service_)

Powered by Google App Engine
This is Rietveld 408576698