| 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 fbd077f91ca88f0dcb33ce184e42a0ff3191f93a..cfaa3cf0e6f6d6f3f6d0a368cde76347a44b0277 100644
|
| --- a/chrome/browser/local_discovery/service_discovery_client_mdns.cc
|
| +++ b/chrome/browser/local_discovery/service_discovery_client_mdns.cc
|
| @@ -145,15 +145,15 @@ class ProxyBase : public ServiceDiscoveryClientMdns::Proxy, public T {
|
| : Proxy(client) {
|
| }
|
|
|
| - virtual ~ProxyBase() {
|
| + ~ProxyBase() override {
|
| DeleteOnMdnsThread(implementation_.release());
|
| }
|
|
|
| - virtual bool IsValid() override {
|
| + bool IsValid() override {
|
| return !!implementation();
|
| }
|
|
|
| - virtual void OnMdnsDestroy() override {
|
| + void OnMdnsDestroy() override {
|
| DeleteOnMdnsThread(implementation_.release());
|
| };
|
|
|
|
|