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

Unified Diff: extensions/browser/api/system_network/system_network_api.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/system_network/system_network_api.h
diff --git a/extensions/browser/api/system_network/system_network_api.h b/extensions/browser/api/system_network/system_network_api.h
index e94b06e8ef729fe3306660ce8398348a1e4d680f..f1f8782cab55cbb5a4103e57b15d2f09eeb9c8fa 100644
--- a/extensions/browser/api/system_network/system_network_api.h
+++ b/extensions/browser/api/system_network/system_network_api.h
@@ -21,10 +21,10 @@ class SystemNetworkGetNetworkInterfacesFunction
SystemNetworkGetNetworkInterfacesFunction();
protected:
- virtual ~SystemNetworkGetNetworkInterfacesFunction();
+ ~SystemNetworkGetNetworkInterfacesFunction() override;
// AsyncApiFunction:
- virtual bool RunAsync() override;
+ bool RunAsync() override;
private:
void GetListOnFileThread();

Powered by Google App Engine
This is Rietveld 408576698