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

Side by Side Diff: webrtc/p2p/base/transport.h

Issue 1917043005: #include "webrtc/base/constructormagic.h" where appropriate (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 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
« no previous file with comments | « webrtc/p2p/base/p2ptransportchannel.h ('k') | webrtc/p2p/base/transportchannel.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. 2 * Copyright 2004 The WebRTC Project Authors. All rights reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 11 matching lines...) Expand all
22 // It is not possible to do so here because the subclass destructor will 22 // It is not possible to do so here because the subclass destructor will
23 // already have run. 23 // already have run.
24 24
25 #ifndef WEBRTC_P2P_BASE_TRANSPORT_H_ 25 #ifndef WEBRTC_P2P_BASE_TRANSPORT_H_
26 #define WEBRTC_P2P_BASE_TRANSPORT_H_ 26 #define WEBRTC_P2P_BASE_TRANSPORT_H_
27 27
28 #include <map> 28 #include <map>
29 #include <memory> 29 #include <memory>
30 #include <string> 30 #include <string>
31 #include <vector> 31 #include <vector>
32
33 #include "webrtc/base/constructormagic.h"
32 #include "webrtc/p2p/base/candidate.h" 34 #include "webrtc/p2p/base/candidate.h"
33 #include "webrtc/p2p/base/p2pconstants.h" 35 #include "webrtc/p2p/base/p2pconstants.h"
34 #include "webrtc/p2p/base/sessiondescription.h" 36 #include "webrtc/p2p/base/sessiondescription.h"
35 #include "webrtc/p2p/base/transportinfo.h" 37 #include "webrtc/p2p/base/transportinfo.h"
36 #include "webrtc/base/messagequeue.h" 38 #include "webrtc/base/messagequeue.h"
37 #include "webrtc/base/rtccertificate.h" 39 #include "webrtc/base/rtccertificate.h"
38 #include "webrtc/base/sigslot.h" 40 #include "webrtc/base/sigslot.h"
39 #include "webrtc/base/sslstreamadapter.h" 41 #include "webrtc/base/sslstreamadapter.h"
40 42
41 namespace cricket { 43 namespace cricket {
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 343
342 ChannelMap channels_; 344 ChannelMap channels_;
343 345
344 RTC_DISALLOW_COPY_AND_ASSIGN(Transport); 346 RTC_DISALLOW_COPY_AND_ASSIGN(Transport);
345 }; 347 };
346 348
347 349
348 } // namespace cricket 350 } // namespace cricket
349 351
350 #endif // WEBRTC_P2P_BASE_TRANSPORT_H_ 352 #endif // WEBRTC_P2P_BASE_TRANSPORT_H_
OLDNEW
« no previous file with comments | « webrtc/p2p/base/p2ptransportchannel.h ('k') | webrtc/p2p/base/transportchannel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698