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

Unified Diff: chrome/common/safe_browsing/zip_analyzer_results.h

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/common/safe_browsing/zip_analyzer_results.h
diff --git a/chrome/common/safe_browsing/zip_analyzer_results.h b/chrome/common/safe_browsing/zip_analyzer_results.h
deleted file mode 100644
index efddbefc179963c90ee255284c5ed58ae8a94b35..0000000000000000000000000000000000000000
--- a/chrome/common/safe_browsing/zip_analyzer_results.h
+++ /dev/null
@@ -1,34 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-//
-// This file contains the zip file analysis implementation for download
-// protection, which runs in a sandboxed utility process.
-
-#ifndef CHROME_COMMON_SAFE_BROWSING_ZIP_ANALYZER_RESULTS_H_
-#define CHROME_COMMON_SAFE_BROWSING_ZIP_ANALYZER_RESULTS_H_
-
-#include <vector>
-
-#include "base/files/file_path.h"
-#include "components/safe_browsing/csd.pb.h"
-
-namespace safe_browsing {
-namespace zip_analyzer {
-
-struct Results {
- bool success;
- bool has_executable;
- bool has_archive;
- google::protobuf::RepeatedPtrField<ClientDownloadRequest_ArchivedBinary>
- archived_binary;
- std::vector<base::FilePath> archived_archive_filenames;
- Results();
- Results(const Results& other);
- ~Results();
-};
-
-} // namespace zip_analyzer
-} // namespace safe_browsing
-
-#endif // CHROME_COMMON_SAFE_BROWSING_ZIP_ANALYZER_RESULTS_H_

Powered by Google App Engine
This is Rietveld 408576698