// 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 <utility> #include "agent_posix.h" #include "event_posix.h" namespace content_analysis { namespace sdk { // static std::unique_ptr<Agent> Agent::Create( Config config, std::unique_ptr<AgentEventHandler> handler, ResultCode* rc) { … } AgentPosix::AgentPosix( Config config, std::unique_ptr<AgentEventHandler> handler) : … { … } ResultCode AgentPosix::HandleEvents() { … } std::string AgentPosix::DebugString() const { … } } // namespace sdk } // namespace content_analysis