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

Unified Diff: chrome/utility/chrome_content_utility_client.cc

Issue 2900803002: Renaming zip_analyzer_results to archive_analyzer_results (Closed)
Patch Set: minor fixups 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/utility/chrome_content_utility_client.cc
diff --git a/chrome/utility/chrome_content_utility_client.cc b/chrome/utility/chrome_content_utility_client.cc
index 3a028e79c35ef2a9739f997cf052bb7046dd3996..f4d7b55ea94fa7958319e0f6c13c737e8829b6f0 100644
--- a/chrome/utility/chrome_content_utility_client.cc
+++ b/chrome/utility/chrome_content_utility_client.cc
@@ -58,8 +58,8 @@
#if defined(FULL_SAFE_BROWSING)
#include "chrome/common/safe_archive_analyzer.mojom.h"
+#include "chrome/common/safe_browsing/archive_analyzer_results.h"
#include "chrome/common/safe_browsing/zip_analyzer.h"
-#include "chrome/common/safe_browsing/zip_analyzer_results.h"
#if defined(OS_MACOSX)
#include "chrome/utility/safe_browsing/mac/dmg_analyzer.h"
#endif
@@ -164,7 +164,7 @@ class SafeArchiveAnalyzerImpl : public chrome::mojom::SafeArchiveAnalyzer {
DCHECK(temporary_file.IsValid());
DCHECK(zip_file.IsValid());
- safe_browsing::zip_analyzer::Results results;
+ safe_browsing::ArchiveAnalyzerResults results;
safe_browsing::zip_analyzer::AnalyzeZipFile(
std::move(zip_file), std::move(temporary_file), &results);
callback.Run(results);
@@ -174,7 +174,7 @@ class SafeArchiveAnalyzerImpl : public chrome::mojom::SafeArchiveAnalyzer {
const AnalyzeDmgFileCallback& callback) override {
#if defined(OS_MACOSX)
DCHECK(dmg_file.IsValid());
- safe_browsing::zip_analyzer::Results results;
+ safe_browsing::ArchiveAnalyzerResults results;
safe_browsing::dmg::AnalyzeDMGFile(std::move(dmg_file), &results);
callback.Run(results);
#else
« no previous file with comments | « chrome/common/safe_browsing/zip_analyzer_results.cc ('k') | chrome/utility/safe_browsing/mac/dmg_analyzer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698