| 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" |
| 8 |
| 7 #if defined(OS_WIN) | 9 #if defined(OS_WIN) |
| 8 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| 9 #include "base/metrics/histogram.h" | 11 #include "base/metrics/histogram.h" |
| 10 #include "base/path_service.h" | 12 #include "base/path_service.h" |
| 11 #include "base/timer/elapsed_timer.h" | 13 #include "base/timer/elapsed_timer.h" |
| 12 #include "chrome/installer/util/browser_distribution.h" | 14 #include "chrome/installer/util/browser_distribution.h" |
| 13 #include "chrome/installer/util/firewall_manager_win.h" | 15 #include "chrome/installer/util/firewall_manager_win.h" |
| 14 #endif // OS_WIN | 16 #endif // OS_WIN |
| 15 | 17 |
| 16 #if defined(OS_MACOSX) | 18 #if defined(OS_MACOSX) |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 scoped_refptr<ServiceDiscoverySharedClient> | 135 scoped_refptr<ServiceDiscoverySharedClient> |
| 134 ServiceDiscoverySharedClient::GetInstance() { | 136 ServiceDiscoverySharedClient::GetInstance() { |
| 135 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 137 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
| 136 NOTIMPLEMENTED(); | 138 NOTIMPLEMENTED(); |
| 137 return NULL; | 139 return NULL; |
| 138 } | 140 } |
| 139 | 141 |
| 140 #endif // ENABLE_MDNS | 142 #endif // ENABLE_MDNS |
| 141 | 143 |
| 142 } // namespace local_discovery | 144 } // namespace local_discovery |
| OLD | NEW |