| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 #include "core/loader/FrameLoader.h" | 42 #include "core/loader/FrameLoader.h" |
| 43 #include "core/loader/FrameLoaderClient.h" | 43 #include "core/loader/FrameLoaderClient.h" |
| 44 #include "core/frame/Frame.h" | 44 #include "core/frame/Frame.h" |
| 45 #include "core/platform/mediastream/RTCDataChannelHandler.h" | 45 #include "core/platform/mediastream/RTCDataChannelHandler.h" |
| 46 #include "modules/mediastream/MediaConstraintsImpl.h" | 46 #include "modules/mediastream/MediaConstraintsImpl.h" |
| 47 #include "modules/mediastream/MediaStreamEvent.h" | 47 #include "modules/mediastream/MediaStreamEvent.h" |
| 48 #include "modules/mediastream/RTCDTMFSender.h" | 48 #include "modules/mediastream/RTCDTMFSender.h" |
| 49 #include "modules/mediastream/RTCDataChannel.h" | 49 #include "modules/mediastream/RTCDataChannel.h" |
| 50 #include "modules/mediastream/RTCDataChannelEvent.h" | 50 #include "modules/mediastream/RTCDataChannelEvent.h" |
| 51 #include "modules/mediastream/RTCErrorCallback.h" | 51 #include "modules/mediastream/RTCErrorCallback.h" |
| 52 #include "modules/mediastream/RTCIceCandidate.h" | |
| 53 #include "modules/mediastream/RTCIceCandidateEvent.h" | 52 #include "modules/mediastream/RTCIceCandidateEvent.h" |
| 54 #include "modules/mediastream/RTCSessionDescription.h" | 53 #include "modules/mediastream/RTCSessionDescription.h" |
| 55 #include "modules/mediastream/RTCSessionDescriptionCallback.h" | 54 #include "modules/mediastream/RTCSessionDescriptionCallback.h" |
| 56 #include "modules/mediastream/RTCSessionDescriptionRequestImpl.h" | 55 #include "modules/mediastream/RTCSessionDescriptionRequestImpl.h" |
| 57 #include "modules/mediastream/RTCStatsCallback.h" | 56 #include "modules/mediastream/RTCStatsCallback.h" |
| 58 #include "modules/mediastream/RTCStatsRequestImpl.h" | 57 #include "modules/mediastream/RTCStatsRequestImpl.h" |
| 59 #include "modules/mediastream/RTCVoidRequestImpl.h" | 58 #include "modules/mediastream/RTCVoidRequestImpl.h" |
| 60 #include "platform/mediastream/RTCConfiguration.h" | 59 #include "platform/mediastream/RTCConfiguration.h" |
| 61 #include "public/platform/WebRTCDataChannelInit.h" | 60 #include "public/platform/WebRTCDataChannelInit.h" |
| 62 #include "public/platform/WebRTCICECandidate.h" | 61 #include "public/platform/WebRTCICECandidate.h" |
| (...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 687 events.swap(m_scheduledEvents); | 686 events.swap(m_scheduledEvents); |
| 688 | 687 |
| 689 Vector<RefPtr<Event> >::iterator it = events.begin(); | 688 Vector<RefPtr<Event> >::iterator it = events.begin(); |
| 690 for (; it != events.end(); ++it) | 689 for (; it != events.end(); ++it) |
| 691 dispatchEvent((*it).release()); | 690 dispatchEvent((*it).release()); |
| 692 | 691 |
| 693 events.clear(); | 692 events.clear(); |
| 694 } | 693 } |
| 695 | 694 |
| 696 } // namespace WebCore | 695 } // namespace WebCore |
| OLD | NEW |