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

Unified Diff: content/common/mojo/service_registry_impl.h

Issue 630853003: Replace OVERRIDE and FINAL with override and final in content/common/[a-s]* (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
« no previous file with comments | « content/common/message_router.h ('k') | content/common/one_writer_seqlock_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/mojo/service_registry_impl.h
diff --git a/content/common/mojo/service_registry_impl.h b/content/common/mojo/service_registry_impl.h
index fe78364bb223cea3241f09a55be4019d161d0b87..def2871e2c84dcb27719ac236d354c9c7911e189 100644
--- a/content/common/mojo/service_registry_impl.h
+++ b/content/common/mojo/service_registry_impl.h
@@ -36,11 +36,11 @@ class ServiceRegistryImpl : public ServiceRegistry,
virtual void AddService(
const std::string& service_name,
const base::Callback<void(mojo::ScopedMessagePipeHandle)> service_factory)
- OVERRIDE;
- virtual void RemoveService(const std::string& service_name) OVERRIDE;
+ override;
+ virtual void RemoveService(const std::string& service_name) override;
virtual void ConnectToRemoteService(
const base::StringPiece& service_name,
- mojo::ScopedMessagePipeHandle handle) OVERRIDE;
+ mojo::ScopedMessagePipeHandle handle) override;
base::WeakPtr<ServiceRegistry> GetWeakPtr();
@@ -48,8 +48,8 @@ class ServiceRegistryImpl : public ServiceRegistry,
// mojo::InterfaceImpl<mojo::ServiceProvider> overrides.
virtual void ConnectToService(
const mojo::String& name,
- mojo::ScopedMessagePipeHandle client_handle) OVERRIDE;
- virtual void OnConnectionError() OVERRIDE;
+ mojo::ScopedMessagePipeHandle client_handle) override;
+ virtual void OnConnectionError() override;
std::map<std::string, base::Callback<void(mojo::ScopedMessagePipeHandle)> >
service_factories_;
« no previous file with comments | « content/common/message_router.h ('k') | content/common/one_writer_seqlock_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698