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

Side by Side Diff: third_party/WebKit/Source/modules/peerconnection/RTCPeerConnection.cpp

Issue 2801083003: Rewrite references to "wtf/" to "platform/wtf/" in modules. (Closed)
Patch Set: Rebase again^3. Will try landing directly. Created 3 years, 8 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 #include "modules/peerconnection/RTCSessionDescriptionRequestImpl.h" 75 #include "modules/peerconnection/RTCSessionDescriptionRequestImpl.h"
76 #include "modules/peerconnection/RTCSessionDescriptionRequestPromiseImpl.h" 76 #include "modules/peerconnection/RTCSessionDescriptionRequestPromiseImpl.h"
77 #include "modules/peerconnection/RTCStatsCallback.h" 77 #include "modules/peerconnection/RTCStatsCallback.h"
78 #include "modules/peerconnection/RTCStatsReport.h" 78 #include "modules/peerconnection/RTCStatsReport.h"
79 #include "modules/peerconnection/RTCStatsRequestImpl.h" 79 #include "modules/peerconnection/RTCStatsRequestImpl.h"
80 #include "modules/peerconnection/RTCVoidRequestImpl.h" 80 #include "modules/peerconnection/RTCVoidRequestImpl.h"
81 #include "modules/peerconnection/RTCVoidRequestPromiseImpl.h" 81 #include "modules/peerconnection/RTCVoidRequestPromiseImpl.h"
82 #include "platform/RuntimeEnabledFeatures.h" 82 #include "platform/RuntimeEnabledFeatures.h"
83 #include "platform/peerconnection/RTCAnswerOptionsPlatform.h" 83 #include "platform/peerconnection/RTCAnswerOptionsPlatform.h"
84 #include "platform/peerconnection/RTCOfferOptionsPlatform.h" 84 #include "platform/peerconnection/RTCOfferOptionsPlatform.h"
85 #include "platform/wtf/CurrentTime.h"
86 #include "platform/wtf/PtrUtil.h"
85 #include "public/platform/Platform.h" 87 #include "public/platform/Platform.h"
86 #include "public/platform/WebCryptoAlgorithmParams.h" 88 #include "public/platform/WebCryptoAlgorithmParams.h"
87 #include "public/platform/WebMediaStream.h" 89 #include "public/platform/WebMediaStream.h"
88 #include "public/platform/WebRTCAnswerOptions.h" 90 #include "public/platform/WebRTCAnswerOptions.h"
89 #include "public/platform/WebRTCCertificate.h" 91 #include "public/platform/WebRTCCertificate.h"
90 #include "public/platform/WebRTCCertificateGenerator.h" 92 #include "public/platform/WebRTCCertificateGenerator.h"
91 #include "public/platform/WebRTCConfiguration.h" 93 #include "public/platform/WebRTCConfiguration.h"
92 #include "public/platform/WebRTCDataChannelHandler.h" 94 #include "public/platform/WebRTCDataChannelHandler.h"
93 #include "public/platform/WebRTCDataChannelInit.h" 95 #include "public/platform/WebRTCDataChannelInit.h"
94 #include "public/platform/WebRTCError.h" 96 #include "public/platform/WebRTCError.h"
95 #include "public/platform/WebRTCICECandidate.h" 97 #include "public/platform/WebRTCICECandidate.h"
96 #include "public/platform/WebRTCKeyParams.h" 98 #include "public/platform/WebRTCKeyParams.h"
97 #include "public/platform/WebRTCOfferOptions.h" 99 #include "public/platform/WebRTCOfferOptions.h"
98 #include "public/platform/WebRTCSessionDescription.h" 100 #include "public/platform/WebRTCSessionDescription.h"
99 #include "public/platform/WebRTCSessionDescriptionRequest.h" 101 #include "public/platform/WebRTCSessionDescriptionRequest.h"
100 #include "public/platform/WebRTCStatsRequest.h" 102 #include "public/platform/WebRTCStatsRequest.h"
101 #include "public/platform/WebRTCVoidRequest.h" 103 #include "public/platform/WebRTCVoidRequest.h"
102 #include "wtf/CurrentTime.h"
103 #include "wtf/PtrUtil.h"
104 104
105 namespace blink { 105 namespace blink {
106 106
107 namespace { 107 namespace {
108 108
109 const char kSignalingStateClosedMessage[] = 109 const char kSignalingStateClosedMessage[] =
110 "The RTCPeerConnection's signalingState is 'closed'."; 110 "The RTCPeerConnection's signalingState is 'closed'.";
111 111
112 bool ThrowExceptionIfSignalingStateClosed( 112 bool ThrowExceptionIfSignalingStateClosed(
113 RTCPeerConnection::SignalingState state, 113 RTCPeerConnection::SignalingState state,
(...skipping 1452 matching lines...) Expand 10 before | Expand all | Expand 10 after
1566 visitor->Trace(local_streams_); 1566 visitor->Trace(local_streams_);
1567 visitor->Trace(remote_streams_); 1567 visitor->Trace(remote_streams_);
1568 visitor->Trace(rtp_receivers_); 1568 visitor->Trace(rtp_receivers_);
1569 visitor->Trace(dispatch_scheduled_event_runner_); 1569 visitor->Trace(dispatch_scheduled_event_runner_);
1570 visitor->Trace(scheduled_events_); 1570 visitor->Trace(scheduled_events_);
1571 EventTargetWithInlineData::Trace(visitor); 1571 EventTargetWithInlineData::Trace(visitor);
1572 SuspendableObject::Trace(visitor); 1572 SuspendableObject::Trace(visitor);
1573 } 1573 }
1574 1574
1575 } // namespace blink 1575 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698