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

Unified Diff: extensions/browser/api/hid/hid_connection_resource.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
« no previous file with comments | « extensions/browser/api/hid/hid_api.h ('k') | extensions/browser/api/hid/hid_device_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/api/hid/hid_connection_resource.h
diff --git a/extensions/browser/api/hid/hid_connection_resource.h b/extensions/browser/api/hid/hid_connection_resource.h
index f98603ea8a7b8f7cd70dacbdd311cfac28d7825f..d2248c4f1d63f59e0163155789038eb3779312b3 100644
--- a/extensions/browser/api/hid/hid_connection_resource.h
+++ b/extensions/browser/api/hid/hid_connection_resource.h
@@ -33,13 +33,13 @@ class HidConnectionResource : public ApiResource {
HidConnectionResource(const std::string& owner_extension_id,
scoped_refptr<device::HidConnection> connection);
- virtual ~HidConnectionResource();
+ ~HidConnectionResource() override;
scoped_refptr<device::HidConnection> connection() const {
return connection_;
}
- virtual bool IsPersistent() const override;
+ bool IsPersistent() const override;
static const char* service_name() { return "HidConnectionResourceManager"; }
« no previous file with comments | « extensions/browser/api/hid/hid_api.h ('k') | extensions/browser/api/hid/hid_device_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698