Chromium Code Reviews

Unified Diff: device/bluetooth/bluetooth_l2cap_channel_mac.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.
Jump to:
View side-by-side diff with in-line comments
Index: device/bluetooth/bluetooth_l2cap_channel_mac.h
diff --git a/device/bluetooth/bluetooth_l2cap_channel_mac.h b/device/bluetooth/bluetooth_l2cap_channel_mac.h
index f843608d204f78e4464422c41b045e140314c387..eafe8f51e39d64f0dc2a4147cc90912f79171df7 100644
--- a/device/bluetooth/bluetooth_l2cap_channel_mac.h
+++ b/device/bluetooth/bluetooth_l2cap_channel_mac.h
@@ -37,12 +37,12 @@ class BluetoothL2capChannelMac : public BluetoothChannelMac {
IOReturn* status);
// BluetoothChannelMac:
- virtual void SetSocket(BluetoothSocketMac* socket) OVERRIDE;
- virtual IOBluetoothDevice* GetDevice() OVERRIDE;
- virtual uint16_t GetOutgoingMTU() OVERRIDE;
+ virtual void SetSocket(BluetoothSocketMac* socket) override;
+ virtual IOBluetoothDevice* GetDevice() override;
+ virtual uint16_t GetOutgoingMTU() override;
virtual IOReturn WriteAsync(void* data,
uint16_t length,
- void* refcon) OVERRIDE;
+ void* refcon) override;
void OnChannelOpenComplete(IOBluetoothL2CAPChannel* channel,
IOReturn status);

Powered by Google App Engine