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

Unified Diff: chromeos/dbus/fake_modem_messaging_client.h

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/fake_lorgnette_manager_client.h ('k') | chromeos/dbus/fake_nfc_adapter_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/fake_modem_messaging_client.h
diff --git a/chromeos/dbus/fake_modem_messaging_client.h b/chromeos/dbus/fake_modem_messaging_client.h
index 16dc4bfa0af6bd651306b1577bcac1647dd35f55..73fe975c5a696c31e02f9da61919937be0797d81 100644
--- a/chromeos/dbus/fake_modem_messaging_client.h
+++ b/chromeos/dbus/fake_modem_messaging_client.h
@@ -17,21 +17,21 @@ class CHROMEOS_EXPORT FakeModemMessagingClient : public ModemMessagingClient {
FakeModemMessagingClient();
virtual ~FakeModemMessagingClient();
- virtual void Init(dbus::Bus* bus) OVERRIDE;
+ virtual void Init(dbus::Bus* bus) override;
virtual void SetSmsReceivedHandler(const std::string& service_name,
const dbus::ObjectPath& object_path,
const SmsReceivedHandler& handler)
- OVERRIDE;
+ override;
virtual void ResetSmsReceivedHandler(const std::string& service_name,
const dbus::ObjectPath& object_path)
- OVERRIDE;
+ override;
virtual void Delete(const std::string& service_name,
const dbus::ObjectPath& object_path,
const dbus::ObjectPath& sms_path,
- const DeleteCallback& callback) OVERRIDE;
+ const DeleteCallback& callback) override;
virtual void List(const std::string& service_name,
const dbus::ObjectPath& object_path,
- const ListCallback& callback) OVERRIDE;
+ const ListCallback& callback) override;
private:
SmsReceivedHandler sms_received_handler_;
« no previous file with comments | « chromeos/dbus/fake_lorgnette_manager_client.h ('k') | chromeos/dbus/fake_nfc_adapter_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698