chromium/chrome/services/speech/soda/soda_client.cc

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/services/speech/soda/soda_client.h"

#include <tuple>

#include "base/logging.h"
#include "base/metrics/histogram_functions.h"
#include "build/build_config.h"

namespace soda {

SodaClient::SodaClient(base::FilePath library_path)
    :{}

NO_SANITIZE("cfi-icall")
SodaClient::~SodaClient() {}

NO_SANITIZE("cfi-icall")
void SodaClient::AddAudio(const char* audio_buffer, int audio_buffer_size) {}

NO_SANITIZE("cfi-icall")
void SodaClient::MarkDone() {}

bool SodaClient::DidAudioPropertyChange(int sample_rate, int channel_count) {}

NO_SANITIZE("cfi-icall")
void SodaClient::Reset(const SerializedSodaConfig config,
                       int sample_rate,
                       int channel_count) {}

}  // namespace soda