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

Unified Diff: extensions/browser/api/system_memory/system_memory_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_memory/system_memory_api.h
diff --git a/extensions/browser/api/system_memory/system_memory_api.h b/extensions/browser/api/system_memory/system_memory_api.h
index 075377207cd6d57761688c6a88d2be1a4fd041b2..b592d8056ed698c3d3e23ecc804d70da875cb295 100644
--- a/extensions/browser/api/system_memory/system_memory_api.h
+++ b/extensions/browser/api/system_memory/system_memory_api.h
@@ -16,8 +16,8 @@ class SystemMemoryGetInfoFunction : public AsyncExtensionFunction {
SystemMemoryGetInfoFunction();
private:
- virtual ~SystemMemoryGetInfoFunction();
- virtual bool RunAsync() override;
+ ~SystemMemoryGetInfoFunction() override;
+ bool RunAsync() override;
void OnGetMemoryInfoCompleted(bool success);
};

Powered by Google App Engine
This is Rietveld 408576698