Chromium Code Reviews| 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 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 225 DeferredTaskHandler& deferredTaskHandler() const { return *m_deferredTaskHan dler; } | 225 DeferredTaskHandler& deferredTaskHandler() const { return *m_deferredTaskHan dler; } |
| 226 // | 226 // |
| 227 // Thread Safety and Graph Locking: | 227 // Thread Safety and Graph Locking: |
| 228 // | 228 // |
| 229 // The following functions call corresponding functions of | 229 // The following functions call corresponding functions of |
| 230 // DeferredTaskHandler. | 230 // DeferredTaskHandler. |
| 231 bool isAudioThread() const { return deferredTaskHandler().isAudioThread(); } | 231 bool isAudioThread() const { return deferredTaskHandler().isAudioThread(); } |
| 232 void lock() { deferredTaskHandler().lock(); } | 232 void lock() { deferredTaskHandler().lock(); } |
| 233 bool tryLock() { return deferredTaskHandler().tryLock(); } | 233 bool tryLock() { return deferredTaskHandler().tryLock(); } |
| 234 void unlock() { deferredTaskHandler().unlock(); } | 234 void unlock() { deferredTaskHandler().unlock(); } |
| 235 #if ENABLE(ASSERT) | |
| 236 // Returns true if this thread owns the context's lock. | 235 // Returns true if this thread owns the context's lock. |
| 237 bool isGraphOwner() { return deferredTaskHandler().isGraphOwner(); } | 236 bool isGraphOwner() { return deferredTaskHandler().isGraphOwner(); } |
| 238 #endif | |
|
hongchan
2016/05/26 21:00:57
What is the meaning of this? Perhaps there was a t
Raymond Toy
2016/05/26 21:06:58
I discovered this just now. Previously ASSERT(...
Nico
2016/05/27 13:09:33
That doesn't sound right. DCHECK() compiles to not
| |
| 239 using AutoLocker = DeferredTaskHandler::AutoLocker; | 237 using AutoLocker = DeferredTaskHandler::AutoLocker; |
| 240 | 238 |
| 241 // Returns the maximum numuber of channels we can support. | 239 // Returns the maximum numuber of channels we can support. |
| 242 static unsigned maxNumberOfChannels() { return MaxNumberOfChannels;} | 240 static unsigned maxNumberOfChannels() { return MaxNumberOfChannels;} |
| 243 | 241 |
| 244 // EventTarget | 242 // EventTarget |
| 245 const AtomicString& interfaceName() const final; | 243 const AtomicString& interfaceName() const final; |
| 246 ExecutionContext* getExecutionContext() const final; | 244 ExecutionContext* getExecutionContext() const final; |
| 247 | 245 |
| 248 DEFINE_ATTRIBUTE_EVENT_LISTENER(statechange); | 246 DEFINE_ATTRIBUTE_EVENT_LISTENER(statechange); |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 364 Member<PeriodicWave> m_periodicWaveTriangle; | 362 Member<PeriodicWave> m_periodicWaveTriangle; |
| 365 | 363 |
| 366 // This is considering 32 is large enough for multiple channels audio. | 364 // This is considering 32 is large enough for multiple channels audio. |
| 367 // It is somewhat arbitrary and could be increased if necessary. | 365 // It is somewhat arbitrary and could be increased if necessary. |
| 368 enum { MaxNumberOfChannels = 32 }; | 366 enum { MaxNumberOfChannels = 32 }; |
| 369 }; | 367 }; |
| 370 | 368 |
| 371 } // namespace blink | 369 } // namespace blink |
| 372 | 370 |
| 373 #endif // AbstractAudioContext_h | 371 #endif // AbstractAudioContext_h |
| OLD | NEW |