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

Unified Diff: chrome/browser/web_resource/resource_request_allowed_notifier.h

Issue 648653003: Standardize usage of virtual/override/final in chrome/browser/ (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/web_resource/resource_request_allowed_notifier.h
diff --git a/chrome/browser/web_resource/resource_request_allowed_notifier.h b/chrome/browser/web_resource/resource_request_allowed_notifier.h
index 0a48e3c7e3562d14efd0018cbad8dca28101387a..d37bfff363967d10c81b15326b7d482ca7740aca 100644
--- a/chrome/browser/web_resource/resource_request_allowed_notifier.h
+++ b/chrome/browser/web_resource/resource_request_allowed_notifier.h
@@ -47,7 +47,7 @@ class ResourceRequestAllowedNotifier
};
ResourceRequestAllowedNotifier();
- virtual ~ResourceRequestAllowedNotifier();
+ ~ResourceRequestAllowedNotifier() override;
// Sets |observer| as the service to be notified by this instance, and
// performs initial checks on the criteria. |observer| may not be NULL.
@@ -81,10 +81,10 @@ class ResourceRequestAllowedNotifier
virtual EulaAcceptedNotifier* CreateEulaNotifier();
// EulaAcceptedNotifier::Observer overrides:
- virtual void OnEulaAccepted() override;
+ void OnEulaAccepted() override;
// net::NetworkChangeNotifier::ConnectionTypeObserver overrides:
- virtual void OnConnectionTypeChanged(
+ void OnConnectionTypeChanged(
net::NetworkChangeNotifier::ConnectionType type) override;
// Tracks whether or not the observer/service depending on this class actually

Powered by Google App Engine
This is Rietveld 408576698