Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 // Return resolve elapsed time in milliseconds. | |
|
Taylor Brandstetter
2017/08/29 02:30:56
nit: This comment is mostly redundant given the na
jonaso1
2017/08/29 10:18:28
Done.
| |
| 41 virtual int64_t GetResolveElapsedTimeMilliseconds() const = 0; | |
| 40 | 42 |
| 41 // This signal is fired when address resolve process is completed. | 43 // This signal is fired when address resolve process is completed. |
| 42 sigslot::signal1<AsyncResolverInterface*> SignalDone; | 44 sigslot::signal1<AsyncResolverInterface*> SignalDone; |
| 43 }; | 45 }; |
| 44 | 46 |
| 45 } // namespace rtc | 47 } // namespace rtc |
| 46 | 48 |
| 47 #endif | 49 #endif |
| OLD | NEW |