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();
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...]
sounds_manager.cc 19 SoundsManager* g_instance = NULL;
24 class SoundsManagerImpl : public SoundsManager {
29 // SoundsManager implementation:
82 SoundsManager::SoundsManager() {}
84 SoundsManager::~SoundsManager() { DCHECK(CalledOnValidThread()); }
87 void SoundsManager::Create() {
89 << "SoundsManager::Create() is called twice";
96 void SoundsManager::Shutdown()
    [all...]

Completed in 64 milliseconds