Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2036)

Unified Diff: chrome/browser/local_discovery/service_discovery_client_mdns.cc

Issue 2963613002: Remove the (broken and unneeded) 'force_update' option from ServiceWatcher::DiscoverNewDevices. (Closed)
Patch Set: Fixup yet another mac site revealed by CQ Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/local_discovery/service_discovery_client_mdns.cc
diff --git a/chrome/browser/local_discovery/service_discovery_client_mdns.cc b/chrome/browser/local_discovery/service_discovery_client_mdns.cc
index ff43bb8246c3837e02a7835468a06aac0799fdc1..6d4d41dd4fc6850cd590e12e45c989fb1b72a9b6 100644
--- a/chrome/browser/local_discovery/service_discovery_client_mdns.cc
+++ b/chrome/browser/local_discovery/service_discovery_client_mdns.cc
@@ -207,11 +207,10 @@ class ServiceWatcherProxy : public ProxyBase<ServiceWatcher> {
}
}
- void DiscoverNewServices(bool force_update) override {
+ void DiscoverNewServices() override {
if (implementation()) {
PostToMdnsThread(base::Bind(&ServiceWatcher::DiscoverNewServices,
- base::Unretained(implementation()),
- force_update));
+ base::Unretained(implementation())));
}
}

Powered by Google App Engine
This is Rietveld 408576698