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

Unified Diff: chrome/browser/extensions/api/mdns/dns_sd_registry.h

Issue 666153002: Standardize usage of virtual/override/final in chrome/browser/extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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/extensions/api/mdns/dns_sd_registry.h
diff --git a/chrome/browser/extensions/api/mdns/dns_sd_registry.h b/chrome/browser/extensions/api/mdns/dns_sd_registry.h
index e6dc922744517a126748c8e95518c4e93a8b793e..c85b1fc719312291e24d416f538d023804ea411e 100644
--- a/chrome/browser/extensions/api/mdns/dns_sd_registry.h
+++ b/chrome/browser/extensions/api/mdns/dns_sd_registry.h
@@ -89,12 +89,12 @@ class DnsSdRegistry : public DnsSdDelegate {
local_discovery::ServiceDiscoverySharedClient* discovery_client);
// DnsSdDelegate implementation:
- virtual void ServiceChanged(const std::string& service_type,
- bool added,
- const DnsSdService& service) override;
- virtual void ServiceRemoved(const std::string& service_type,
- const std::string& service_name) override;
- virtual void ServicesFlushed(const std::string& service_type) override;
+ void ServiceChanged(const std::string& service_type,
+ bool added,
+ const DnsSdService& service) override;
+ void ServiceRemoved(const std::string& service_type,
+ const std::string& service_name) override;
+ void ServicesFlushed(const std::string& service_type) override;
DnsSdServiceTypeDataMap service_data_map_;

Powered by Google App Engine
This is Rietveld 408576698