chromium/third_party/content_analysis_sdk/src/agent/src/agent_base.cc

// 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_base.h"

namespace content_analysis {
namespace sdk {

AgentBase::AgentBase(Config config, std::unique_ptr<AgentEventHandler> handler)
    :{}

const Agent::Config& AgentBase::GetConfig() const {}

ResultCode AgentBase::Stop() {}

ResultCode AgentBase::NotifyError(const char* context, ResultCode error) {}

#define RC_RECOVERABLE
#define RC_UNRECOVERABLE
const char* ResultCodeToString(ResultCode rc) {}
#undef RC_RECOVERABLE
#undef RC_UNRECOVERABLE

}  // namespace sdk
}  // namespace content_analysis