Chromium Code Reviews| 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..31402213bef1ea7634d7447616cffa843170ecc0 |
| --- /dev/null |
| +++ b/chrome/common/safe_browsing/archive_analyzer_results.cc |
| @@ -0,0 +1,20 @@ |
| +// Copyright 2015 The Chromium Authors. All rights reserved. |
|
vakh (use Gerrit instead)
2017/05/23 17:34:31
copyright year.
mortonm
2017/05/23 17:53:51
Done.
|
| +// 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 |