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

Unified Diff: chrome/browser/ui/webui/quota_internals/quota_internals_handler.h

Issue 671653002: Standardize usage of virtual/override/final in chrome/browser/ui/ (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: chrome/browser/ui/webui/quota_internals/quota_internals_handler.h
diff --git a/chrome/browser/ui/webui/quota_internals/quota_internals_handler.h b/chrome/browser/ui/webui/quota_internals/quota_internals_handler.h
index 5ee219bc28cf4d1cf2b5adb6daf8fa5c6cd14dd4..1ddfce820c07ee38a34f318ce28f7732e5ba6070 100644
--- a/chrome/browser/ui/webui/quota_internals/quota_internals_handler.h
+++ b/chrome/browser/ui/webui/quota_internals/quota_internals_handler.h
@@ -31,8 +31,8 @@ typedef std::map<std::string, std::string> Statistics;
class QuotaInternalsHandler : public content::WebUIMessageHandler {
public:
QuotaInternalsHandler();
- virtual ~QuotaInternalsHandler();
- virtual void RegisterMessages() override;
+ ~QuotaInternalsHandler() override;
+ void RegisterMessages() override;
// Called by QuotaInternalsProxy to report information to WebUI page.
void ReportAvailableSpace(int64 available_space);

Powered by Google App Engine
This is Rietveld 408576698