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

Unified Diff: extensions/browser/api/bluetooth_low_energy/bluetooth_low_energy_notify_session.h

Issue 664933004: Standardize usage of virtual/override/final in extensions/ (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: extensions/browser/api/bluetooth_low_energy/bluetooth_low_energy_notify_session.h
diff --git a/extensions/browser/api/bluetooth_low_energy/bluetooth_low_energy_notify_session.h b/extensions/browser/api/bluetooth_low_energy/bluetooth_low_energy_notify_session.h
index 98ee7078fe6136b99a1587c997e6937028941c94..1337438f62a25dbd27a0653e965ad55d2da18417 100644
--- a/extensions/browser/api/bluetooth_low_energy/bluetooth_low_energy_notify_session.h
+++ b/extensions/browser/api/bluetooth_low_energy/bluetooth_low_energy_notify_session.h
@@ -21,13 +21,13 @@ class BluetoothLowEnergyNotifySession : public ApiResource {
bool persistent,
const std::string& owner_extension_id,
scoped_ptr<device::BluetoothGattNotifySession> session);
- virtual ~BluetoothLowEnergyNotifySession();
+ ~BluetoothLowEnergyNotifySession() override;
// Returns a pointer to the underlying session object.
device::BluetoothGattNotifySession* GetSession() const;
// ApiResource override.
- virtual bool IsPersistent() const override;
+ bool IsPersistent() const override;
// This resource should be managed on the UI thread.
static const content::BrowserThread::ID kThreadId =

Powered by Google App Engine
This is Rietveld 408576698