Searched defs:SoundsManager (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/media/audio/sounds/
H A Dsounds_manager.h19 class MEDIA_EXPORT SoundsManager : public base::NonThreadSafe { class in namespace:media
23 // Creates a singleton instance of the SoundsManager.
26 // Removes a singleton instance of the SoundsManager.
29 // Returns a pointer to a singleton instance of the SoundsManager.
30 static SoundsManager* Get();
34 static void InitializeForTesting(SoundsManager* manager);
36 // Initializes SoundsManager with the wav data for the system
37 // sounds. Returns true if SoundsManager was successfully
41 // Plays sound identified by |key|, returns false if SoundsManager
45 // Returns duration of the sound identified by |key|. If SoundsManager
[all...]
H A Dsounds_manager.cc19 SoundsManager* g_instance = NULL;
24 class SoundsManagerImpl : public SoundsManager {
29 // SoundsManager implementation:
82 SoundsManager::SoundsManager() {} function in class:media::SoundsManager
84 SoundsManager::~SoundsManager() { DCHECK(CalledOnValidThread()); }
87 void SoundsManager::Create() {
89 << "SoundsManager::Create() is called twice";
96 void SoundsManager
[all...]

Completed in 174 milliseconds