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

Unified Diff: chromeos/dbus/introspectable_client.cc

Issue 628883002: replace OVERRIDE and FINAL with override and final in chromeos/ (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 | « chromeos/dbus/image_burner_client.cc ('k') | chromeos/dbus/lorgnette_manager_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/introspectable_client.cc
diff --git a/chromeos/dbus/introspectable_client.cc b/chromeos/dbus/introspectable_client.cc
index ddc548485695a919e18be41d8600cd338da6b87d..4b5175551986163b2367ee78ac33593d289a563a 100644
--- a/chromeos/dbus/introspectable_client.cc
+++ b/chromeos/dbus/introspectable_client.cc
@@ -40,7 +40,7 @@ class IntrospectableClientImpl : public IntrospectableClient {
// IntrospectableClient override.
virtual void Introspect(const std::string& service_name,
const dbus::ObjectPath& object_path,
- const IntrospectCallback& callback) OVERRIDE {
+ const IntrospectCallback& callback) override {
dbus::MethodCall method_call(kIntrospectableInterface, kIntrospect);
dbus::ObjectProxy* object_proxy = bus_->GetObjectProxy(service_name,
@@ -55,7 +55,7 @@ class IntrospectableClientImpl : public IntrospectableClient {
}
protected:
- virtual void Init(dbus::Bus* bus) OVERRIDE { bus_ = bus; }
+ virtual void Init(dbus::Bus* bus) override { bus_ = bus; }
private:
// Called by dbus:: when a response for Introspect() is recieved.
« no previous file with comments | « chromeos/dbus/image_burner_client.cc ('k') | chromeos/dbus/lorgnette_manager_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698