OLD | NEW |
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 Loading... |
88 DCHECK(IsMainThread()); | 88 DCHECK(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(!hrtf_database_); | 94 DCHECK(!hrtf_database_); |
95 DCHECK(!thread_); | 95 DCHECK(!thread_); |
96 | 96 |
97 // Start the asynchronous database loading process. | 97 // Start the asynchronous database loading process. |
98 thread_ = Platform::Current()->CreateThread("HRTF database loader"); | 98 thread_ = WTF::WrapUnique( |
| 99 Platform::Current()->CreateThread("HRTF database loader")); |
99 // TODO(alexclarke): Should this be posted as a loading task? | 100 // TODO(alexclarke): Should this be posted as a loading task? |
100 thread_->GetWebTaskRunner()->PostTask( | 101 thread_->GetWebTaskRunner()->PostTask( |
101 BLINK_FROM_HERE, CrossThreadBind(&HRTFDatabaseLoader::LoadTask, | 102 BLINK_FROM_HERE, CrossThreadBind(&HRTFDatabaseLoader::LoadTask, |
102 CrossThreadUnretained(this))); | 103 CrossThreadUnretained(this))); |
103 } | 104 } |
104 | 105 |
105 HRTFDatabase* HRTFDatabaseLoader::Database() { | 106 HRTFDatabase* HRTFDatabaseLoader::Database() { |
106 DCHECK(!IsMainThread()); | 107 DCHECK(!IsMainThread()); |
107 | 108 |
108 // 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 Loading... |
129 // TODO(alexclarke): Should this be posted as a loading task? | 130 // TODO(alexclarke): Should this be posted as a loading task? |
130 thread_->GetWebTaskRunner()->PostTask( | 131 thread_->GetWebTaskRunner()->PostTask( |
131 BLINK_FROM_HERE, CrossThreadBind(&HRTFDatabaseLoader::CleanupTask, | 132 BLINK_FROM_HERE, CrossThreadBind(&HRTFDatabaseLoader::CleanupTask, |
132 CrossThreadUnretained(this), | 133 CrossThreadUnretained(this), |
133 CrossThreadUnretained(&sync))); | 134 CrossThreadUnretained(&sync))); |
134 sync.Wait(); | 135 sync.Wait(); |
135 thread_.reset(); | 136 thread_.reset(); |
136 } | 137 } |
137 | 138 |
138 } // namespace blink | 139 } // namespace blink |
OLD | NEW |