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

Unified Diff: chrome/common/safe_browsing/archive_analyzer_results.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
« no previous file with comments | « chrome/common/safe_browsing/archive_analyzer_results.h ('k') | chrome/common/safe_browsing/zip_analyzer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/safe_browsing/archive_analyzer_results.cc
diff --git a/chrome/common/safe_browsing/archive_analyzer_results.cc b/chrome/common/safe_browsing/archive_analyzer_results.cc
new file mode 100644
index 0000000000000000000000000000000000000000..dc1f071a699d3e87803557214e721d9c606290b6
--- /dev/null
+++ b/chrome/common/safe_browsing/archive_analyzer_results.cc
@@ -0,0 +1,20 @@
+// Copyright 2017 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 archive file analysis implementation for download
+// protection, which runs in a sandboxed utility process.
+
+#include "chrome/common/safe_browsing/archive_analyzer_results.h"
+
+namespace safe_browsing {
+
+ArchiveAnalyzerResults::ArchiveAnalyzerResults()
+ : success(false), has_executable(false), has_archive(false) {}
+
+ArchiveAnalyzerResults::ArchiveAnalyzerResults(
+ const ArchiveAnalyzerResults& other) = default;
+
+ArchiveAnalyzerResults::~ArchiveAnalyzerResults() {}
+
+} // namespace safe_browsing
« no previous file with comments | « chrome/common/safe_browsing/archive_analyzer_results.h ('k') | chrome/common/safe_browsing/zip_analyzer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698