blob: 647d14dc0537d57114a2a632e3476f1552a41e29 [file] [log] [blame]
Peter Qiuc0beca52015-09-03 11:25:46 -07001//
2// Copyright (C) 2014 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
Peter Qiud670d032014-06-03 15:04:43 -070016
Alex Deymocddd2d02014-11-10 19:55:35 -080017#include "shill/mock_dns_server_tester.h"
18
Peter Qiud670d032014-06-03 15:04:43 -070019#include <string>
20#include <vector>
Alex Vakulenkoa41ab512014-07-23 14:24:23 -070021
Peter Qiud670d032014-06-03 15:04:43 -070022#include "shill/connection.h"
Peter Qiud670d032014-06-03 15:04:43 -070023
24namespace shill {
25
26MockDNSServerTester::MockDNSServerTester(ConnectionRefPtr connection)
27 : DNSServerTester(connection,
Ben Chancc225ef2014-09-30 13:26:51 -070028 nullptr,
Peter Qiud670d032014-06-03 15:04:43 -070029 std::vector<std::string>(),
30 false,
31 base::Callback<void(const DNSServerTester::Status)>()) {}
32
33MockDNSServerTester::~MockDNSServerTester() {}
34
35} // namespace shill