Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / chrome / common / safe_browsing / zip_analyzer_results.cc
blobf0da179cf8f8a43a57d22ff254afbd9ceb5e7a7e
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 //
5 // This file contains the zip file analysis implementation for download
6 // protection, which runs in a sandboxed utility process.
8 #include "chrome/common/safe_browsing/zip_analyzer_results.h"
10 namespace safe_browsing {
11 namespace zip_analyzer {
13 Results::Results() : success(false), has_executable(false), has_archive(false) {
16 Results::~Results() {
19 } // namespace zip_analyzer
20 } // namespace safe_browsing