Home | History | Annotate | Download | only in sounds

Lines Matching defs:SoundsManager

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() {
97 CHECK(g_instance) << "SoundsManager::Shutdown() is called "
104 SoundsManager* SoundsManager::Get() {
105 CHECK(g_instance) << "SoundsManager::Get() is called before Create()";
110 void SoundsManager::InitializeForTesting(SoundsManager* manager) {
111 CHECK(!g_instance) << "SoundsManager is already initialized.";