HomeSort by relevance Sort by last modified time
    Searched defs:SoundsManager (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/media/audio/sounds/
sounds_manager.h 19 class MEDIA_EXPORT SoundsManager : public base::NonThreadSafe {
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();
32 // Initializes SoundsManager with the wav data for the system
33 // sounds. Returns true if SoundsManager was successfully
37 // Plays sound identified by |key|, returns false if SoundsManager
41 // Returns duration of the sound identified by |key|. If SoundsManager
47 SoundsManager();
    [all...]
sounds_manager.cc 21 SoundsManager* g_instance = NULL;
25 class SoundsManagerImpl : public SoundsManager {
30 // SoundsManager implementation:
84 class SoundsManagerStub : public SoundsManager {
89 // SoundsManager implementation:
121 SoundsManager::SoundsManager() {}
123 SoundsManager::~SoundsManager() { DCHECK(CalledOnValidThread()); }
126 void SoundsManager::Create()
    [all...]

Completed in 38 milliseconds