| 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/browser/local_discovery/service_discovery_shared_client.h" | 5 #include "chrome/browser/local_discovery/service_discovery_shared_client.h" |
| 6 | 6 |
| 7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
| 8 | 8 |
| 9 #if defined(OS_WIN) | 9 #if defined(OS_WIN) |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| 11 #include "base/metrics/histogram.h" | 11 #include "base/metrics/histogram_macros.h" |
| 12 #include "base/path_service.h" | 12 #include "base/path_service.h" |
| 13 #include "base/timer/elapsed_timer.h" | 13 #include "base/timer/elapsed_timer.h" |
| 14 #include "chrome/installer/util/browser_distribution.h" | 14 #include "chrome/installer/util/browser_distribution.h" |
| 15 #include "chrome/installer/util/firewall_manager_win.h" | 15 #include "chrome/installer/util/firewall_manager_win.h" |
| 16 #endif // OS_WIN | 16 #endif // OS_WIN |
| 17 | 17 |
| 18 #if defined(OS_MACOSX) | 18 #if defined(OS_MACOSX) |
| 19 #include "chrome/browser/local_discovery/service_discovery_client_mac_factory.h" | 19 #include "chrome/browser/local_discovery/service_discovery_client_mac_factory.h" |
| 20 #endif | 20 #endif |
| 21 | 21 |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 scoped_refptr<ServiceDiscoverySharedClient> | 101 scoped_refptr<ServiceDiscoverySharedClient> |
| 102 ServiceDiscoverySharedClient::GetInstance() { | 102 ServiceDiscoverySharedClient::GetInstance() { |
| 103 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 103 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
| 104 NOTIMPLEMENTED(); | 104 NOTIMPLEMENTED(); |
| 105 return NULL; | 105 return NULL; |
| 106 } | 106 } |
| 107 | 107 |
| 108 #endif // ENABLE_MDNS | 108 #endif // ENABLE_MDNS |
| 109 | 109 |
| 110 } // namespace local_discovery | 110 } // namespace local_discovery |
| OLD | NEW |