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

Side by Side Diff: webrtc/rtc_base/asyncresolverinterface.h

Issue 2996933003: Add logging of host lookups made by TurnPort to the RtcEventLog. (Closed)
Patch Set: review Created 3 years, 3 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/pc/peerconnectionfactory.cc ('k') | webrtc/rtc_base/nethelpers.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 2013 The WebRTC Project Authors. All rights reserved. 2 * Copyright 2013 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 19 matching lines...) Expand all
30 virtual int GetError() const = 0; 30 virtual int GetError() const = 0;
31 // Delete the resolver. 31 // Delete the resolver.
32 virtual void Destroy(bool wait) = 0; 32 virtual void Destroy(bool wait) = 0;
33 // Returns top most resolved IPv4 address if address is resolved successfully. 33 // Returns top most resolved IPv4 address if address is resolved successfully.
34 // Otherwise returns address set in SetAddress. 34 // Otherwise returns address set in SetAddress.
35 SocketAddress address() const { 35 SocketAddress address() const {
36 SocketAddress addr; 36 SocketAddress addr;
37 GetResolvedAddress(AF_INET, &addr); 37 GetResolvedAddress(AF_INET, &addr);
38 return addr; 38 return addr;
39 } 39 }
40 virtual int64_t GetResolveElapsedTimeMilliseconds() const = 0;
40 41
41 // This signal is fired when address resolve process is completed. 42 // This signal is fired when address resolve process is completed.
42 sigslot::signal1<AsyncResolverInterface*> SignalDone; 43 sigslot::signal1<AsyncResolverInterface*> SignalDone;
43 }; 44 };
44 45
45 } // namespace rtc 46 } // namespace rtc
46 47
47 #endif 48 #endif
OLDNEW
« no previous file with comments | « webrtc/pc/peerconnectionfactory.cc ('k') | webrtc/rtc_base/nethelpers.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698