Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(24)

Side by Side Diff: Source/modules/mediastream/RTCPeerConnection.cpp

Issue 297103002: Move modules-dependent Event code out of core. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Address review comments. Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 20 matching lines...) Expand all
31 #include "config.h" 31 #include "config.h"
32 32
33 #include "modules/mediastream/RTCPeerConnection.h" 33 #include "modules/mediastream/RTCPeerConnection.h"
34 34
35 #include "bindings/v8/ArrayValue.h" 35 #include "bindings/v8/ArrayValue.h"
36 #include "bindings/v8/ExceptionMessages.h" 36 #include "bindings/v8/ExceptionMessages.h"
37 #include "bindings/v8/ExceptionState.h" 37 #include "bindings/v8/ExceptionState.h"
38 #include "core/dom/Document.h" 38 #include "core/dom/Document.h"
39 #include "core/dom/ExceptionCode.h" 39 #include "core/dom/ExceptionCode.h"
40 #include "core/dom/ExecutionContext.h" 40 #include "core/dom/ExecutionContext.h"
41 #include "core/events/Event.h"
42 #include "core/frame/LocalFrame.h" 41 #include "core/frame/LocalFrame.h"
43 #include "core/html/VoidCallback.h" 42 #include "core/html/VoidCallback.h"
44 #include "core/loader/FrameLoader.h" 43 #include "core/loader/FrameLoader.h"
45 #include "core/loader/FrameLoaderClient.h" 44 #include "core/loader/FrameLoaderClient.h"
46 #include "modules/mediastream/MediaConstraintsImpl.h" 45 #include "modules/mediastream/MediaConstraintsImpl.h"
47 #include "modules/mediastream/MediaStreamEvent.h" 46 #include "modules/mediastream/MediaStreamEvent.h"
48 #include "modules/mediastream/RTCDTMFSender.h" 47 #include "modules/mediastream/RTCDTMFSender.h"
49 #include "modules/mediastream/RTCDataChannel.h" 48 #include "modules/mediastream/RTCDataChannel.h"
50 #include "modules/mediastream/RTCDataChannelEvent.h" 49 #include "modules/mediastream/RTCDataChannelEvent.h"
51 #include "modules/mediastream/RTCErrorCallback.h" 50 #include "modules/mediastream/RTCErrorCallback.h"
(...skipping 669 matching lines...) Expand 10 before | Expand all | Expand 10 after
721 720
722 void RTCPeerConnection::trace(Visitor* visitor) 721 void RTCPeerConnection::trace(Visitor* visitor)
723 { 722 {
724 visitor->trace(m_localStreams); 723 visitor->trace(m_localStreams);
725 visitor->trace(m_remoteStreams); 724 visitor->trace(m_remoteStreams);
726 visitor->trace(m_dataChannels); 725 visitor->trace(m_dataChannels);
727 visitor->trace(m_scheduledEvents); 726 visitor->trace(m_scheduledEvents);
728 } 727 }
729 728
730 } // namespace WebCore 729 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/modules/mediastream/RTCIceCandidateEvent.h ('k') | Source/modules/screen_orientation/ScreenOrientationController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698