summaryrefslogtreecommitdiffstats
path: root/netwerk/dns/DNSResolverInfo.cpp
blob: 41e3bc7bb79d155cd10c35c61be72b3d60ed3f44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#include "DNSResolverInfo.h"

namespace mozilla {
namespace net {

NS_IMPL_ISUPPORTS(DNSResolverInfo, nsIDNSResolverInfo)

NS_IMETHODIMP
DNSResolverInfo::GetURL(nsACString& aURL) {
  aURL = mURL;
  return NS_OK;
}

}  // namespace net
}  // namespace mozilla