// Copyright 2022 The Chromium Authors. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "agent_mac.h" #include "event_mac.h" namespace content_analysis { namespace sdk { // static std::unique_ptr Agent::Create( Config config, std::unique_ptr handler, ResultCode* rc) { *rc = ResultCode::ERR_UNEXPECTED; return std::make_unique(std::move(config), std::move(handler)); } AgentMac::AgentMac( Config config, std::unique_ptr handler) : AgentBase(std::move(config), std::move(handler)) {} ResultCode AgentMac::HandleEvents() { return ResultCode::ERR_UNEXPECTED; } std::string AgentMac::DebugString() const { return std::string(); } } // namespace sdk } // namespace content_analysis