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

Unified Diff: device/bluetooth/bluetooth_socket_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
Index: device/bluetooth/bluetooth_socket_chromeos.h
diff --git a/device/bluetooth/bluetooth_socket_chromeos.h b/device/bluetooth/bluetooth_socket_chromeos.h
index ff8ee7703ddbeaa8be51eca94758eea8ffce9d3b..6ea2c210a8bcd977d783ec0894fc951af109c76a 100644
--- a/device/bluetooth/bluetooth_socket_chromeos.h
+++ b/device/bluetooth/bluetooth_socket_chromeos.h
@@ -70,10 +70,10 @@ class CHROMEOS_EXPORT BluetoothSocketChromeOS
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 Accept(const AcceptCompletionCallback& success_callback,
- const ErrorCompletionCallback& error_callback) OVERRIDE;
+ const ErrorCompletionCallback& error_callback) override;
// Returns the object path of the socket.
const dbus::ObjectPath& object_path() const { return object_path_; }
@@ -103,7 +103,7 @@ class CHROMEOS_EXPORT BluetoothSocketChromeOS
// BluetoothAdapter::Observer:
virtual void AdapterPresentChanged(device::BluetoothAdapter* adapter,
- bool present) OVERRIDE;
+ bool present) override;
// Called by dbus:: on completion of the RegisterProfile() method call
// triggered as a result of the adapter becoming present again.
@@ -112,16 +112,16 @@ class CHROMEOS_EXPORT BluetoothSocketChromeOS
const std::string& error_message);
// BluetoothProfileServiceProvider::Delegate:
- virtual void Released() OVERRIDE;
+ virtual void Released() override;
virtual void NewConnection(
const dbus::ObjectPath& device_path,
scoped_ptr<dbus::FileDescriptor> fd,
const BluetoothProfileServiceProvider::Delegate::Options& options,
- const ConfirmationCallback& callback) OVERRIDE;
+ const ConfirmationCallback& callback) override;
virtual void RequestDisconnection(
const dbus::ObjectPath& device_path,
- const ConfirmationCallback& callback) OVERRIDE;
- virtual void Cancel() OVERRIDE;
+ const ConfirmationCallback& callback) override;
+ virtual void Cancel() override;
// Method run to accept a single incoming connection.
void AcceptConnectionRequest();
« no previous file with comments | « device/bluetooth/bluetooth_rfcomm_channel_mac.h ('k') | device/bluetooth/bluetooth_socket_chromeos_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698