// 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_AUDIO_AUDIO_LOGGING_H_ #define MEDIA_AUDIO_AUDIO_LOGGING_H_ #include <memory> #include <string> namespace media { class AudioParameters; // AudioLog logs state information about an active audio component. class AudioLog { … }; // AudioLogFactory dispenses AudioLog instances for tracking AudioComponent // behavior. class AudioLogFactory { … }; } // namespace media #endif // MEDIA_AUDIO_AUDIO_LOGGING_H_