root/chrome/browser/safe_browsing/binary_feature_extractor_posix.cc

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. CheckSignature
  2. ExtractImageHeaders

// 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

/* [<][>][^][v][top][bottom][index][help] */