| Index: third_party/WebKit/Source/platform/audio/HRTFDatabaseLoader.h
|
| diff --git a/third_party/WebKit/Source/platform/audio/HRTFDatabaseLoader.h b/third_party/WebKit/Source/platform/audio/HRTFDatabaseLoader.h
|
| index 8de2595bf1ca3d1959d7db89d37bb7a8e24954d2..f587a757d8e1b952b20cfc760dbf50dc920c7c82 100644
|
| --- a/third_party/WebKit/Source/platform/audio/HRTFDatabaseLoader.h
|
| +++ b/third_party/WebKit/Source/platform/audio/HRTFDatabaseLoader.h
|
| @@ -38,10 +38,9 @@
|
|
|
| namespace blink {
|
|
|
| -class TaskSynchronizer;
|
| +class WaitableEvent;
|
|
|
| // HRTFDatabaseLoader will asynchronously load the default HRTFDatabase in a new thread.
|
| -
|
| class PLATFORM_EXPORT HRTFDatabaseLoader final : public RefCounted<HRTFDatabaseLoader> {
|
| public:
|
| // Lazily creates a HRTFDatabaseLoader (if not already created) for the given sample-rate
|
| @@ -76,7 +75,7 @@ private:
|
|
|
| // Called in asynchronous loading thread.
|
| void loadTask();
|
| - void cleanupTask(TaskSynchronizer*);
|
| + void cleanupTask(WaitableEvent*);
|
|
|
| // Holding a m_lock is required when accessing m_hrtfDatabase since we access it from multiple threads.
|
| Mutex m_lock;
|
|
|