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 955 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
966 dispatchEvent(OfflineAudioCompletionEvent::create(renderedBuffer)); | 966 dispatchEvent(OfflineAudioCompletionEvent::create(renderedBuffer)); |
967 } | 967 } |
968 } | 968 } |
969 | 969 |
970 void AudioContext::trace(Visitor* visitor) | 970 void AudioContext::trace(Visitor* visitor) |
971 { | 971 { |
972 visitor->trace(m_renderTarget); | 972 visitor->trace(m_renderTarget); |
973 visitor->trace(m_destinationNode); | 973 visitor->trace(m_destinationNode); |
974 visitor->trace(m_listener); | 974 visitor->trace(m_listener); |
975 visitor->trace(m_dirtySummingJunctions); | 975 visitor->trace(m_dirtySummingJunctions); |
| 976 EventTargetWithInlineData::trace(visitor); |
976 } | 977 } |
977 | 978 |
978 } // namespace WebCore | 979 } // namespace WebCore |
979 | 980 |
980 #endif // ENABLE(WEB_AUDIO) | 981 #endif // ENABLE(WEB_AUDIO) |
OLD | NEW |