// 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_DOWNSTREAM_LOADER_CLIENT_H_ #define COMPONENTS_SPEECH_DOWNSTREAM_LOADER_CLIENT_H_ namespace speech { // An interface containing the callback functions required by consumers // of the DownstreamLoader. The class that implements this client // interface must outlive the DownstreamLoader. class DownstreamLoaderClient { … }; } // namespace speech #endif // COMPONENTS_SPEECH_DOWNSTREAM_LOADER_CLIENT_H_