| Index: device/bluetooth/bluetooth_gatt_notify_session_chromeos.h | 
| diff --git a/device/bluetooth/bluetooth_gatt_notify_session_chromeos.h b/device/bluetooth/bluetooth_gatt_notify_session_chromeos.h | 
| index 1202fd8e7dba4596fc95696f3c182e35f876af3b..3ad3843f379e10084c12d1a6fde33241740c842e 100644 | 
| --- a/device/bluetooth/bluetooth_gatt_notify_session_chromeos.h | 
| +++ b/device/bluetooth/bluetooth_gatt_notify_session_chromeos.h | 
| @@ -30,9 +30,9 @@ class BluetoothGattNotifySessionChromeOS | 
| virtual ~BluetoothGattNotifySessionChromeOS(); | 
|  | 
| // BluetoothGattNotifySession overrides. | 
| -  virtual std::string GetCharacteristicIdentifier() const OVERRIDE; | 
| -  virtual bool IsActive() OVERRIDE; | 
| -  virtual void Stop(const base::Closure& callback) OVERRIDE; | 
| +  virtual std::string GetCharacteristicIdentifier() const override; | 
| +  virtual bool IsActive() override; | 
| +  virtual void Stop(const base::Closure& callback) override; | 
|  | 
| private: | 
| friend class BluetoothRemoteGattCharacteristicChromeOS; | 
| @@ -46,10 +46,10 @@ class BluetoothGattNotifySessionChromeOS | 
|  | 
| // BluetoothGattCharacteristicClient::Observer overrides. | 
| virtual void GattCharacteristicRemoved( | 
| -      const dbus::ObjectPath& object_path) OVERRIDE; | 
| +      const dbus::ObjectPath& object_path) override; | 
| virtual void GattCharacteristicPropertyChanged( | 
| const dbus::ObjectPath& object_path, | 
| -      const std::string& property_name) OVERRIDE; | 
| +      const std::string& property_name) override; | 
|  | 
| // True, if this session is currently active. | 
| bool active_; | 
|  |