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

Unified Diff: device/bluetooth/bluetooth_socket_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. 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/bluetooth/bluetooth_socket_chromeos_unittest.cc ('k') | device/bluetooth/bluetooth_socket_net.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/bluetooth/bluetooth_socket_mac.h
diff --git a/device/bluetooth/bluetooth_socket_mac.h b/device/bluetooth/bluetooth_socket_mac.h
index 34f813684694e29fd115eab32a7f1dff657d1766..f51f25279b6e78ffc557d56b97a1e09da6f24dc1 100644
--- a/device/bluetooth/bluetooth_socket_mac.h
+++ b/device/bluetooth/bluetooth_socket_mac.h
@@ -75,18 +75,18 @@ class BluetoothSocketMac : public BluetoothSocket {
const ErrorCompletionCallback& error_callback);
// BluetoothSocket:
- virtual void Close() OVERRIDE;
- virtual void Disconnect(const base::Closure& callback) OVERRIDE;
+ virtual void Close() override;
+ virtual void Disconnect(const base::Closure& callback) override;
virtual void Receive(
int /* buffer_size */,
const ReceiveCompletionCallback& success_callback,
- const ReceiveErrorCompletionCallback& error_callback) OVERRIDE;
+ const ReceiveErrorCompletionCallback& error_callback) override;
virtual void Send(scoped_refptr<net::IOBuffer> buffer,
int buffer_size,
const SendCompletionCallback& success_callback,
- const ErrorCompletionCallback& error_callback) OVERRIDE;
+ const ErrorCompletionCallback& error_callback) override;
virtual void Accept(const AcceptCompletionCallback& success_callback,
- const ErrorCompletionCallback& error_callback) OVERRIDE;
+ const ErrorCompletionCallback& error_callback) override;
// Callback that is invoked when the OS completes an SDP query.
// |status| is the returned status from the SDP query, |device| is the
« no previous file with comments | « device/bluetooth/bluetooth_socket_chromeos_unittest.cc ('k') | device/bluetooth/bluetooth_socket_net.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698