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

Unified Diff: device/bluetooth/bluetooth_gatt_chromeos_unittest.cc

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_gatt_chromeos_unittest.cc
diff --git a/device/bluetooth/bluetooth_gatt_chromeos_unittest.cc b/device/bluetooth/bluetooth_gatt_chromeos_unittest.cc
index 60cd54cba0b7a640ef9a0bf9e287e0f6474e104a..636b4672c51ac33263fe5573253b9610dd50afd9 100644
--- a/device/bluetooth/bluetooth_gatt_chromeos_unittest.cc
+++ b/device/bluetooth/bluetooth_gatt_chromeos_unittest.cc
@@ -81,7 +81,7 @@ class TestObserver : public BluetoothAdapter::Observer {
// BluetoothAdapter::Observer overrides.
virtual void GattServiceAdded(BluetoothAdapter* adapter,
BluetoothDevice* device,
- BluetoothGattService* service) OVERRIDE {
+ BluetoothGattService* service) override {
ASSERT_EQ(adapter_.get(), adapter);
ASSERT_EQ(service->GetDevice(), device);
@@ -99,7 +99,7 @@ class TestObserver : public BluetoothAdapter::Observer {
virtual void GattServiceRemoved(BluetoothAdapter* adapter,
BluetoothDevice* device,
- BluetoothGattService* service) OVERRIDE {
+ BluetoothGattService* service) override {
ASSERT_EQ(adapter_.get(), adapter);
ASSERT_EQ(service->GetDevice(), device);
@@ -118,7 +118,7 @@ class TestObserver : public BluetoothAdapter::Observer {
virtual void GattDiscoveryCompleteForService(
BluetoothAdapter* adapter,
- BluetoothGattService* service) OVERRIDE {
+ BluetoothGattService* service) override {
ASSERT_EQ(adapter_.get(), adapter);
++gatt_discovery_complete_count_;
@@ -126,7 +126,7 @@ class TestObserver : public BluetoothAdapter::Observer {
}
virtual void GattServiceChanged(BluetoothAdapter* adapter,
- BluetoothGattService* service) OVERRIDE {
+ BluetoothGattService* service) override {
ASSERT_EQ(adapter_.get(), adapter);
++gatt_service_changed_count_;
@@ -135,7 +135,7 @@ class TestObserver : public BluetoothAdapter::Observer {
virtual void GattCharacteristicAdded(
BluetoothAdapter* adapter,
- BluetoothGattCharacteristic* characteristic) OVERRIDE {
+ BluetoothGattCharacteristic* characteristic) override {
ASSERT_EQ(adapter_.get(), adapter);
++gatt_characteristic_added_count_;
@@ -152,7 +152,7 @@ class TestObserver : public BluetoothAdapter::Observer {
virtual void GattCharacteristicRemoved(
BluetoothAdapter* adapter,
- BluetoothGattCharacteristic* characteristic) OVERRIDE {
+ BluetoothGattCharacteristic* characteristic) override {
ASSERT_EQ(adapter_.get(), adapter);
++gatt_characteristic_removed_count_;
@@ -170,7 +170,7 @@ class TestObserver : public BluetoothAdapter::Observer {
virtual void GattCharacteristicValueChanged(
BluetoothAdapter* adapter,
BluetoothGattCharacteristic* characteristic,
- const std::vector<uint8>& value) OVERRIDE {
+ const std::vector<uint8>& value) override {
ASSERT_EQ(adapter_.get(), adapter);
++gatt_characteristic_value_changed_count_;
@@ -188,7 +188,7 @@ class TestObserver : public BluetoothAdapter::Observer {
virtual void GattDescriptorAdded(
BluetoothAdapter* adapter,
- BluetoothGattDescriptor* descriptor) OVERRIDE {
+ BluetoothGattDescriptor* descriptor) override {
ASSERT_EQ(adapter_.get(), adapter);
++gatt_descriptor_added_count_;
@@ -205,7 +205,7 @@ class TestObserver : public BluetoothAdapter::Observer {
virtual void GattDescriptorRemoved(
BluetoothAdapter* adapter,
- BluetoothGattDescriptor* descriptor) OVERRIDE {
+ BluetoothGattDescriptor* descriptor) override {
ASSERT_EQ(adapter_.get(), adapter);
++gatt_descriptor_removed_count_;
@@ -223,7 +223,7 @@ class TestObserver : public BluetoothAdapter::Observer {
virtual void GattDescriptorValueChanged(
BluetoothAdapter* adapter,
BluetoothGattDescriptor* descriptor,
- const std::vector<uint8>& value) OVERRIDE {
+ const std::vector<uint8>& value) override {
ASSERT_EQ(adapter_.get(), adapter);
++gatt_descriptor_value_changed_count_;
« no previous file with comments | « device/bluetooth/bluetooth_discovery_manager_mac.mm ('k') | device/bluetooth/bluetooth_gatt_connection_chromeos.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698