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

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

Issue 68093002: Remove duplicated headers from modules/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 1 month 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « Source/modules/mediastream/RTCIceCandidate.cpp ('k') | Source/modules/mediastream/RTCSessionDescription.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698