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

Unified Diff: chrome/browser/local_discovery/service_discovery_host_client.h

Issue 624173002: replace OVERRIDE and FINAL with override and final in chrome/browser/[j-q]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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/local_discovery/service_discovery_host_client.h
diff --git a/chrome/browser/local_discovery/service_discovery_host_client.h b/chrome/browser/local_discovery/service_discovery_host_client.h
index 330418c3774116fd722d0f9d2a2dd4a1a40f8362..ce16e439bcc5acf6afda59eafe3d6e7b4e07e303 100644
--- a/chrome/browser/local_discovery/service_discovery_host_client.h
+++ b/chrome/browser/local_discovery/service_discovery_host_client.h
@@ -48,18 +48,18 @@ class ServiceDiscoveryHostClient
// ServiceDiscoveryClient implementation.
virtual scoped_ptr<ServiceWatcher> CreateServiceWatcher(
const std::string& service_type,
- const ServiceWatcher::UpdatedCallback& callback) OVERRIDE;
+ const ServiceWatcher::UpdatedCallback& callback) override;
virtual scoped_ptr<ServiceResolver> CreateServiceResolver(
const std::string& service_name,
- const ServiceResolver::ResolveCompleteCallback& callback) OVERRIDE;
+ const ServiceResolver::ResolveCompleteCallback& callback) override;
virtual scoped_ptr<LocalDomainResolver> CreateLocalDomainResolver(
const std::string& domain,
net::AddressFamily address_family,
- const LocalDomainResolver::IPAddressCallback& callback) OVERRIDE;
+ const LocalDomainResolver::IPAddressCallback& callback) override;
// UtilityProcessHostClient implementation.
- virtual void OnProcessCrashed(int exit_code) OVERRIDE;
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
+ virtual void OnProcessCrashed(int exit_code) override;
+ virtual bool OnMessageReceived(const IPC::Message& message) override;
protected:
virtual ~ServiceDiscoveryHostClient();

Powered by Google App Engine
This is Rietveld 408576698