// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef MEDIA_BASE_CALLBACK_HOLDER_H_ #define MEDIA_BASE_CALLBACK_HOLDER_H_ #include "base/functional/bind.h" #include "base/functional/callback.h" #include "base/functional/callback_helpers.h" namespace media { // A helper class that can hold a callback from being fired. template <typename CB> class CallbackHolder { … }; } // namespace media #endif // MEDIA_BASE_CALLBACK_HOLDER_H_