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

Side by Side Diff: remoting/protocol/ice_transport_channel.h

Issue 2538183002: remoting: Cleanup class/struct fwd declarations (Closed)
Patch Set: Created 4 years 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 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef REMOTING_PROTOCOL_ICE_TRANSPORT_CHANNEL_H_ 5 #ifndef REMOTING_PROTOCOL_ICE_TRANSPORT_CHANNEL_H_
6 #define REMOTING_PROTOCOL_ICE_TRANSPORT_CHANNEL_H_ 6 #define REMOTING_PROTOCOL_ICE_TRANSPORT_CHANNEL_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/callback_forward.h" 10 #include "base/callback_forward.h"
(...skipping 12 matching lines...) Expand all
23 class Candidate; 23 class Candidate;
24 class P2PTransportChannel; 24 class P2PTransportChannel;
25 class PortAllocator; 25 class PortAllocator;
26 class TransportChannel; 26 class TransportChannel;
27 class TransportChannelImpl; 27 class TransportChannelImpl;
28 } // namespace cricket 28 } // namespace cricket
29 29
30 namespace remoting { 30 namespace remoting {
31 namespace protocol { 31 namespace protocol {
32 32
33 class P2PDatagramSocket;
33 class TransportContext; 34 class TransportContext;
34 35
35 class IceTransportChannel : public sigslot::has_slots<> { 36 class IceTransportChannel : public sigslot::has_slots<> {
36 public: 37 public:
37 class Delegate { 38 class Delegate {
38 public: 39 public:
39 Delegate() {}; 40 Delegate() {};
40 virtual ~Delegate() {}; 41 virtual ~Delegate() {};
41 42
42 // Called to pass ICE credentials to the session. Used only for STANDARD 43 // Called to pass ICE credentials to the session. Used only for STANDARD
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 132
132 base::WeakPtrFactory<IceTransportChannel> weak_factory_; 133 base::WeakPtrFactory<IceTransportChannel> weak_factory_;
133 134
134 DISALLOW_COPY_AND_ASSIGN(IceTransportChannel); 135 DISALLOW_COPY_AND_ASSIGN(IceTransportChannel);
135 }; 136 };
136 137
137 } // namespace protocol 138 } // namespace protocol
138 } // namespace remoting 139 } // namespace remoting
139 140
140 #endif // REMOTING_PROTOCOL_ICE_TRANSPORT_CHANNEL_H_ 141 #endif // REMOTING_PROTOCOL_ICE_TRANSPORT_CHANNEL_H_
OLDNEW
« no previous file with comments | « remoting/protocol/ice_connection_to_client.h ('k') | remoting/protocol/jingle_session_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698