From 0280cb6ec0c9158a01e2f484a6caa83d690b4e66 Mon Sep 17 00:00:00 2001 From: dcheng Date: Thu, 15 Jan 2015 23:37:50 -0800 Subject: Update {virtual,override,final} to follow C++11 style in chromeos/dbus. The Google style guide states that only one of {virtual,override,final} should be used for each declaration, since override implies virtual and final implies both virtual and override. This patch was automatically generated with a ChromeOS build using a variation of https://codereview.chromium.org/598073004. BUG=417463 R=hashimoto@chromium.org Review URL: https://codereview.chromium.org/817853005 Cr-Commit-Position: refs/heads/master@{#311851} --- chromeos/dbus/fake_bluetooth_gatt_characteristic_service_provider.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chromeos/dbus/fake_bluetooth_gatt_characteristic_service_provider.h') diff --git a/chromeos/dbus/fake_bluetooth_gatt_characteristic_service_provider.h b/chromeos/dbus/fake_bluetooth_gatt_characteristic_service_provider.h index 7e99dec..8a8440b 100644 --- a/chromeos/dbus/fake_bluetooth_gatt_characteristic_service_provider.h +++ b/chromeos/dbus/fake_bluetooth_gatt_characteristic_service_provider.h @@ -27,10 +27,10 @@ class CHROMEOS_EXPORT FakeBluetoothGattCharacteristicServiceProvider const std::vector& flags, const std::vector& permissions, const dbus::ObjectPath& service_path); - virtual ~FakeBluetoothGattCharacteristicServiceProvider(); + ~FakeBluetoothGattCharacteristicServiceProvider() override; // BluetoothGattCharacteristicServiceProvider override. - virtual void SendValueChanged(const std::vector& value) override; + void SendValueChanged(const std::vector& value) override; // Methods to simulate value get/set requests issued from a remote device. The // methods do nothing, if the associated service was not registered with the -- cgit v1.1