Backed out changeset 5c8bf24bb247 (bug 1923942) for causing generate failures. CLOSED...
[gecko.git] / third_party / content_analysis_sdk / browser / src / client_base.cc
blob0147c0cbee6c3427c7c588fa8d394404a031fa21
1 // Copyright 2022 The Chromium Authors.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "client_base.h"
7 namespace content_analysis {
8 namespace sdk {
10 ClientBase::ClientBase(Config config) : config_(config) {}
12 const Client::Config& ClientBase::GetConfig() const {
13 return config_;
16 const AgentInfo& ClientBase::GetAgentInfo() const {
17 return agent_info_;
20 } // namespace sdk
21 } // namespace content_analysis