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

Unified Diff: chromeos/dbus/bluetooth_gatt_manager_client.cc

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
Index: chromeos/dbus/bluetooth_gatt_manager_client.cc
diff --git a/chromeos/dbus/bluetooth_gatt_manager_client.cc b/chromeos/dbus/bluetooth_gatt_manager_client.cc
index 96d45b962fda247b49166db0b8b8f3e5948745ee..745568829536d4512a16280ffefd68d5fe1b0a8f 100644
--- a/chromeos/dbus/bluetooth_gatt_manager_client.cc
+++ b/chromeos/dbus/bluetooth_gatt_manager_client.cc
@@ -31,7 +31,7 @@ class BluetoothGattManagerClientImpl : public BluetoothGattManagerClient {
virtual void RegisterService(const dbus::ObjectPath& service_path,
const Options& options,
const base::Closure& callback,
- const ErrorCallback& error_callback) OVERRIDE {
+ const ErrorCallback& error_callback) override {
dbus::MethodCall method_call(
bluetooth_gatt_manager::kBluetoothGattManagerInterface,
bluetooth_gatt_manager::kRegisterService);
@@ -59,7 +59,7 @@ class BluetoothGattManagerClientImpl : public BluetoothGattManagerClient {
// BluetoothGattManagerClient override.
virtual void UnregisterService(const dbus::ObjectPath& service_path,
const base::Closure& callback,
- const ErrorCallback& error_callback) OVERRIDE {
+ const ErrorCallback& error_callback) override {
dbus::MethodCall method_call(
bluetooth_gatt_manager::kBluetoothGattManagerInterface,
bluetooth_gatt_manager::kUnregisterService);
@@ -79,7 +79,7 @@ class BluetoothGattManagerClientImpl : public BluetoothGattManagerClient {
protected:
// chromeos::DBusClient override.
- virtual void Init(dbus::Bus* bus) OVERRIDE {
+ virtual void Init(dbus::Bus* bus) override {
DCHECK(bus);
object_proxy_ = bus->GetObjectProxy(
bluetooth_gatt_manager::kBluetoothGattManagerServiceName,
« no previous file with comments | « chromeos/dbus/bluetooth_gatt_descriptor_service_provider.cc ('k') | chromeos/dbus/bluetooth_gatt_service_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698