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

Unified Diff: chrome/browser/safe_browsing/mac_archive_type_sniffer.h

Issue 2926473002: Mac Archive Type Sniffing (Closed)
Patch Set: adding signature check file read and removing mods to UDIFParser Created 3 years, 6 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/browser/safe_browsing/mac_archive_type_sniffer.h
diff --git a/chrome/browser/safe_browsing/mac_archive_type_sniffer.h b/chrome/browser/safe_browsing/mac_archive_type_sniffer.h
new file mode 100644
index 0000000000000000000000000000000000000000..f655ff2414760c61330f6559aed7c78c054dc6f3
--- /dev/null
+++ b/chrome/browser/safe_browsing/mac_archive_type_sniffer.h
@@ -0,0 +1,36 @@
+// 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.
+
+#ifndef CHROME_BROWSER_SAFE_BROWSING_MAC_ARCHIVE_TYPE_SNIFFER_H_
+#define CHROME_BROWSER_SAFE_BROWSING_MAC_ARCHIVE_TYPE_SNIFFER_H_
+
+#include "base/files/file.h"
+#include "base/files/file_path.h"
+#include "base/memory/ref_counted.h"
+
+namespace safe_browsing {
+
+// This class is used to determine whether a given file is a Mac archive type,
+// regardless of file extension. It does so by determining whether the file has
+// the 'koly' signature typical of Mac archive files.
+class MacArchiveTypeSniffer
+ : public base::RefCountedThreadSafe<MacArchiveTypeSniffer> {
+ public:
+ MacArchiveTypeSniffer();
+
+ // Reads trailer from file to see if it is a DMG type. Must be called on the
+ // FILE thread.
+ static bool IsAppleDiskImage(const base::FilePath& dmg_file);
+
+ private:
+ friend class base::RefCountedThreadSafe<MacArchiveTypeSniffer>;
+
+ ~MacArchiveTypeSniffer();
+
+ DISALLOW_COPY_AND_ASSIGN(MacArchiveTypeSniffer);
+};
+
+} // namespace safe_browsing
+
+#endif // CHROME_BROWSER_SAFE_BROWSING_MAC_ARCHIVE_TYPE_SNIFFER_H_

Powered by Google App Engine
This is Rietveld 408576698