summaryrefslogtreecommitdiffstats
path: root/chrome/browser/safe_browsing/binary_feature_extractor_posix.cc
blob: a7da72214cad714eae67a851da9ff2e9ea789ec3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// 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) {}

void BinaryFeatureExtractor::ExtractImageHeaders(
    const base::FilePath& file_path,
    ClientDownloadRequest_ImageHeaders* image_headers) {}

}  // namespace safe_browsing