| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 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 818 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 829 dispatchEvent((*it).release()); | 829 dispatchEvent((*it).release()); |
| 830 | 830 |
| 831 events.clear(); | 831 events.clear(); |
| 832 } | 832 } |
| 833 | 833 |
| 834 DEFINE_TRACE(RTCPeerConnection) | 834 DEFINE_TRACE(RTCPeerConnection) |
| 835 { | 835 { |
| 836 visitor->trace(m_localStreams); | 836 visitor->trace(m_localStreams); |
| 837 visitor->trace(m_remoteStreams); | 837 visitor->trace(m_remoteStreams); |
| 838 visitor->trace(m_dataChannels); | 838 visitor->trace(m_dataChannels); |
| 839 #if ENABLE(OILPAN) | |
| 840 visitor->trace(m_scheduledEvents); | 839 visitor->trace(m_scheduledEvents); |
| 841 #endif | |
| 842 RefCountedGarbageCollectedEventTargetWithInlineData<RTCPeerConnection>::trac
e(visitor); | 840 RefCountedGarbageCollectedEventTargetWithInlineData<RTCPeerConnection>::trac
e(visitor); |
| 843 ActiveDOMObject::trace(visitor); | 841 ActiveDOMObject::trace(visitor); |
| 844 } | 842 } |
| 845 | 843 |
| 846 } // namespace blink | 844 } // namespace blink |
| OLD | NEW |