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

Unified Diff: device/nfc/nfc_tag_technology_chromeos.h

Issue 628873002: replace OVERRIDE and FINAL with override and final in device/ (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 | « device/nfc/nfc_tag_technology.h ('k') | device/serial/data_receiver.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/nfc/nfc_tag_technology_chromeos.h
diff --git a/device/nfc/nfc_tag_technology_chromeos.h b/device/nfc/nfc_tag_technology_chromeos.h
index 71b070ef74f99e26553328b4d0b11609157cd79c..6f55f4369df956e2c202ef4bc3225cddb65ad105 100644
--- a/device/nfc/nfc_tag_technology_chromeos.h
+++ b/device/nfc/nfc_tag_technology_chromeos.h
@@ -28,19 +28,19 @@ class NfcNdefTagTechnologyChromeOS : public device::NfcNdefTagTechnology,
// device::NfcNdefTagTechnology overrides.
virtual void AddObserver(device::NfcNdefTagTechnology::Observer* observer)
- OVERRIDE;
+ override;
virtual void RemoveObserver(device::NfcNdefTagTechnology::Observer* observer)
- OVERRIDE;
- virtual const device::NfcNdefMessage& GetNdefMessage() const OVERRIDE;
+ override;
+ virtual const device::NfcNdefMessage& GetNdefMessage() const override;
virtual void WriteNdef(const device::NfcNdefMessage& message,
const base::Closure& callback,
- const ErrorCallback& error_callback) OVERRIDE;
+ const ErrorCallback& error_callback) override;
// NfcRecordClient::Observer overrides.
- virtual void RecordAdded(const dbus::ObjectPath& object_path) OVERRIDE;
- virtual void RecordRemoved(const dbus::ObjectPath& object_path) OVERRIDE;
+ virtual void RecordAdded(const dbus::ObjectPath& object_path) override;
+ virtual void RecordRemoved(const dbus::ObjectPath& object_path) override;
virtual void RecordPropertiesReceived(
- const dbus::ObjectPath& object_path) OVERRIDE;
+ const dbus::ObjectPath& object_path) override;
private:
friend class NfcTagChromeOS;
« no previous file with comments | « device/nfc/nfc_tag_technology.h ('k') | device/serial/data_receiver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698