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

Unified Diff: chrome/browser/safe_browsing/binary_feature_extractor_posix.cc

Issue 1015363003: Move BinaryFeatureExtractor and PEImageReader to common. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@zip2
Patch Set: sync to position 321353 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/browser/safe_browsing/binary_feature_extractor_posix.cc
diff --git a/chrome/browser/safe_browsing/binary_feature_extractor_posix.cc b/chrome/browser/safe_browsing/binary_feature_extractor_posix.cc
deleted file mode 100644
index 1c395c8f343ae99a1ebceec64b058bbebbafb2b6..0000000000000000000000000000000000000000
--- a/chrome/browser/safe_browsing/binary_feature_extractor_posix.cc
+++ /dev/null
@@ -1,27 +0,0 @@
-// Copyright 2014 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 is a stub for the code signing utilities on Mac and Linux.
-// It should eventually be replaced with a real implementation.
-
-#include "chrome/browser/safe_browsing/binary_feature_extractor.h"
-
-namespace safe_browsing {
-
-BinaryFeatureExtractor::BinaryFeatureExtractor() {}
-
-BinaryFeatureExtractor::~BinaryFeatureExtractor() {}
-
-void BinaryFeatureExtractor::CheckSignature(
- const base::FilePath& file_path,
- ClientDownloadRequest_SignatureInfo* signature_info) {}
-
-bool BinaryFeatureExtractor::ExtractImageHeaders(
- const base::FilePath& file_path,
- ExtractHeadersOption options,
- ClientDownloadRequest_ImageHeaders* image_headers) {
- return false;
-}
-
-} // namespace safe_browsing

Powered by Google App Engine
This is Rietveld 408576698