// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_RENDERER_PEPPER_PEPPER_AUDIO_CONTROLLER_H_ #define CONTENT_RENDERER_PEPPER_PEPPER_AUDIO_CONTROLLER_H_ #include <set> #include "base/memory/raw_ptr.h" namespace content { class PepperAudioOutputHost; class PepperPluginInstanceImpl; class PPB_Audio_Impl; /** * This class controls all the active audio instances of a Pepper instance. * This class can only be a non-shareable member of PepperPluginInstanceImpl. */ class PepperAudioController { … }; } // namespace content #endif // CONTENT_RENDERER_PEPPER_PEPPER_AUDIO_CONTROLLER_H_