chromium/components/speech/upstream_loader_client.h

// 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.

#ifndef COMPONENTS_SPEECH_UPSTREAM_LOADER_CLIENT_H_
#define COMPONENTS_SPEECH_UPSTREAM_LOADER_CLIENT_H_

namespace speech {

// An interface containing the callback functions required by consumers
// of the UpstreamLoader. The class that implements this client
// interface must outlive the UpstreamLoader.
class UpstreamLoaderClient {};

}  // namespace speech

#endif  // COMPONENTS_SPEECH_UPSTREAM_LOADER_CLIENT_H_