summaryrefslogtreecommitdiffstats
path: root/third_party/content_analysis_sdk/browser/src/client_base.cc
blob: 0147c0cbee6c3427c7c588fa8d394404a031fa21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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 "client_base.h"

namespace content_analysis {
namespace sdk {

ClientBase::ClientBase(Config config) : config_(config) {}

const Client::Config& ClientBase::GetConfig() const {
  return config_;
}

const AgentInfo& ClientBase::GetAgentInfo() const {
  return agent_info_;
}

}  // namespace sdk
}  // namespace content_analysis