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

Side by Side Diff: chrome/common/safe_browsing/archive_analyzer_results.cc

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 unified diff | Download patch
OLDNEW
(Empty)
1 // 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.
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 archive file analysis implementation for download
6 // protection, which runs in a sandboxed utility process.
7
8 #include "chrome/common/safe_browsing/archive_analyzer_results.h"
9
10 namespace safe_browsing {
11
12 ArchiveAnalyzerResults::ArchiveAnalyzerResults()
13 : success(false), has_executable(false), has_archive(false) {}
14
15 ArchiveAnalyzerResults::ArchiveAnalyzerResults(
16 const ArchiveAnalyzerResults& other) = default;
17
18 ArchiveAnalyzerResults::~ArchiveAnalyzerResults() {}
19
20 } // namespace safe_browsing
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698