Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(37)

Side by Side Diff: third_party/WebKit/Source/platform/audio/HRTFDatabaseLoader.cpp

Issue 2547053003: s/ passed(...) / WTF::passed(...) / to avoid future ambiguity w/ base::Passed. (Closed)
Patch Set: Rebasing... Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 ASSERT(isMainThread()); 88 ASSERT(isMainThread());
89 89
90 // m_hrtfDatabase and m_thread should both be unset because this should be a 90 // m_hrtfDatabase and m_thread should both be unset because this should be a
91 // new HRTFDatabaseLoader object that was just created by 91 // new HRTFDatabaseLoader object that was just created by
92 // createAndLoadAsynchronouslyIfNecessary and because we haven't started 92 // createAndLoadAsynchronouslyIfNecessary and because we haven't started
93 // loadTask yet for this object. 93 // loadTask yet for this object.
94 DCHECK(!m_hrtfDatabase); 94 DCHECK(!m_hrtfDatabase);
95 DCHECK(!m_thread); 95 DCHECK(!m_thread);
96 96
97 // Start the asynchronous database loading process. 97 // Start the asynchronous database loading process.
98 m_thread = 98 m_thread = WTF::wrapUnique(
99 wrapUnique(Platform::current()->createThread("HRTF database loader")); 99 Platform::current()->createThread("HRTF database loader"));
100 // TODO(alexclarke): Should this be posted as a loading task? 100 // TODO(alexclarke): Should this be posted as a loading task?
101 m_thread->getWebTaskRunner()->postTask( 101 m_thread->getWebTaskRunner()->postTask(
102 BLINK_FROM_HERE, crossThreadBind(&HRTFDatabaseLoader::loadTask, 102 BLINK_FROM_HERE, crossThreadBind(&HRTFDatabaseLoader::loadTask,
103 crossThreadUnretained(this))); 103 crossThreadUnretained(this)));
104 } 104 }
105 105
106 HRTFDatabase* HRTFDatabaseLoader::database() { 106 HRTFDatabase* HRTFDatabaseLoader::database() {
107 DCHECK(!isMainThread()); 107 DCHECK(!isMainThread());
108 108
109 // Seeing that this is only called from the audio thread, we can't block. 109 // Seeing that this is only called from the audio thread, we can't block.
(...skipping 20 matching lines...) Expand all
130 // TODO(alexclarke): Should this be posted as a loading task? 130 // TODO(alexclarke): Should this be posted as a loading task?
131 m_thread->getWebTaskRunner()->postTask( 131 m_thread->getWebTaskRunner()->postTask(
132 BLINK_FROM_HERE, crossThreadBind(&HRTFDatabaseLoader::cleanupTask, 132 BLINK_FROM_HERE, crossThreadBind(&HRTFDatabaseLoader::cleanupTask,
133 crossThreadUnretained(this), 133 crossThreadUnretained(this),
134 crossThreadUnretained(&sync))); 134 crossThreadUnretained(&sync)));
135 sync.wait(); 135 sync.wait();
136 m_thread.reset(); 136 m_thread.reset();
137 } 137 }
138 138
139 } // namespace blink 139 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/audio/HRTFDatabase.cpp ('k') | third_party/WebKit/Source/platform/audio/HRTFElevation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698