| 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_;
|
|
|