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

Unified Diff: chrome/browser/safe_browsing/sandboxed_dmg_analyzer_mac.h

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/browser/safe_browsing/sandboxed_dmg_analyzer_mac.h
diff --git a/chrome/browser/safe_browsing/sandboxed_dmg_analyzer_mac.h b/chrome/browser/safe_browsing/sandboxed_dmg_analyzer_mac.h
index 7eafd1234e9ee6b9066cdd83e57bea94b560dc50..7aa696692b4440eeea120194fb6c242ebf44fc42 100644
--- a/chrome/browser/safe_browsing/sandboxed_dmg_analyzer_mac.h
+++ b/chrome/browser/safe_browsing/sandboxed_dmg_analyzer_mac.h
@@ -21,9 +21,7 @@ namespace safe_browsing {
class SandboxedDMGAnalyzer
: public base::RefCountedThreadSafe<SandboxedDMGAnalyzer> {
public:
- using Results = zip_analyzer::Results;
-
- using ResultCallback = base::Callback<void(const Results&)>;
+ using ResultCallback = base::Callback<void(const ArchiveAnalyzerResults&)>;
SandboxedDMGAnalyzer(const base::FilePath& dmg_file,
const ResultCallback& callback);
@@ -46,7 +44,7 @@ class SandboxedDMGAnalyzer
void AnalyzeFile(base::File file);
// The response containing the file analyze results.
- void AnalyzeFileDone(const Results& results);
+ void AnalyzeFileDone(const ArchiveAnalyzerResults& results);
// The file path of the file to analyze.
const base::FilePath file_path_;

Powered by Google App Engine
This is Rietveld 408576698