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

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

Issue 999003003: Include attributes of zipped binaries in ClientDownloadRequests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@zip2
Patch Set: fix ordering of SandboxedZipAnalyzer methods Created 5 years, 9 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.cc
diff --git a/chrome/common/safe_browsing/zip_analyzer_results.cc b/chrome/common/safe_browsing/zip_analyzer_results.cc
new file mode 100644
index 0000000000000000000000000000000000000000..f0da179cf8f8a43a57d22ff254afbd9ceb5e7a7e
--- /dev/null
+++ b/chrome/common/safe_browsing/zip_analyzer_results.cc
@@ -0,0 +1,20 @@
+// 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.
+
+#include "chrome/common/safe_browsing/zip_analyzer_results.h"
+
+namespace safe_browsing {
+namespace zip_analyzer {
+
+Results::Results() : success(false), has_executable(false), has_archive(false) {
+}
+
+Results::~Results() {
+}
+
+} // namespace zip_analyzer
+} // namespace safe_browsing

Powered by Google App Engine
This is Rietveld 408576698