// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NET_DNS_MOCK_MDNS_CLIENT_H_ #define NET_DNS_MOCK_MDNS_CLIENT_H_ #include <memory> #include <string> #include "net/dns/mdns_client.h" #include "testing/gmock/include/gmock/gmock.h" namespace net { class MockMDnsTransaction : public MDnsTransaction { … }; class MockMDnsClient : public MDnsClient { … }; } // namespace net #endif // NET_DNS_MOCK_MDNS_CLIENT_H_