| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/utility/local_discovery/service_discovery_client_impl.h" | 5 #include "chrome/common/local_discovery/service_discovery_client_impl.h" |
| 6 #include "net/dns/mdns_client_impl.h" | 6 #include "net/dns/mdns_client_impl.h" |
| 7 #include "net/dns/mock_mdns_socket_factory.h" | 7 #include "net/dns/mock_mdns_socket_factory.h" |
| 8 #include "testing/gmock/include/gmock/gmock.h" | 8 #include "testing/gmock/include/gmock/gmock.h" |
| 9 #include "testing/gtest/include/gtest/gtest.h" | 9 #include "testing/gtest/include/gtest/gtest.h" |
| 10 | 10 |
| 11 using ::testing::_; | 11 using ::testing::_; |
| 12 | 12 |
| 13 namespace local_discovery { | 13 namespace local_discovery { |
| 14 | 14 |
| 15 namespace { | 15 namespace { |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 resolver.Start(); | 174 resolver.Start(); |
| 175 | 175 |
| 176 EXPECT_CALL(*this, AddressCallbackInternal(false, "", "")); | 176 EXPECT_CALL(*this, AddressCallbackInternal(false, "", "")); |
| 177 | 177 |
| 178 RunFor(base::TimeDelta::FromSeconds(4)); | 178 RunFor(base::TimeDelta::FromSeconds(4)); |
| 179 } | 179 } |
| 180 | 180 |
| 181 } // namespace | 181 } // namespace |
| 182 | 182 |
| 183 } // namespace local_discovery | 183 } // namespace local_discovery |
| OLD | NEW |