chromium/chrome/browser/safe_browsing/cloud_content_scanning/test_binary_upload_service.cc

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/safe_browsing/cloud_content_scanning/test_binary_upload_service.h"

#include "chrome/browser/safe_browsing/cloud_content_scanning/binary_fcm_service.h"
#include "content/public/browser/browser_task_traits.h"
#include "content/public/browser/browser_thread.h"

namespace safe_browsing {

TestBinaryUploadService::TestBinaryUploadService() = default;
TestBinaryUploadService::~TestBinaryUploadService() = default;

base::WeakPtr<BinaryUploadService> TestBinaryUploadService::AsWeakPtr() {}

void TestBinaryUploadService::MaybeUploadForDeepScanning(
    std::unique_ptr<Request> request) {}

void TestBinaryUploadService::SetResponse(
    Result result,
    enterprise_connectors::ContentAnalysisResponse response) {}

void TestBinaryUploadService::ClearWasCalled() {}

}  // namespace safe_browsing