client_mac.cc (754B)
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. 4 5 #include <utility> 6 7 #include "client_mac.h" 8 9 namespace content_analysis { 10 namespace sdk { 11 12 // static 13 std::unique_ptr<Client> Client::Create(Config config) { 14 return nullptr; 15 } 16 17 ClientMac::ClientMac(Config config) : ClientBase(std::move(config)) {} 18 19 int ClientMac::Send(ContentAnalysisRequest request, 20 ContentAnalysisResponse* response) { 21 return -1; 22 } 23 24 int ClientMac::Acknowledge(const ContentAnalysisAcknowledgement& ack) { 25 return -1; 26 } 27 28 int ClientMac::CancelRequests(const ContentAnalysisCancelRequests& cancel) { 29 return -1; 30 } 31 32 } // namespace sdk 33 } // namespace content_analysis