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

Unified Diff: chrome/browser/content_settings/content_settings_override_provider.cc

Issue 625113002: replace OVERRIDE and FINAL with override and final in chrome/browser/[a-i]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix newly added OVERRIDEs 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/content_settings/content_settings_override_provider.cc
diff --git a/chrome/browser/content_settings/content_settings_override_provider.cc b/chrome/browser/content_settings/content_settings_override_provider.cc
index 382cd32f190fd0b2cc1daaa432a17cf0c00fa11a..24a546781b5ff0a94a50d3963a3bdcfac7679928 100644
--- a/chrome/browser/content_settings/content_settings_override_provider.cc
+++ b/chrome/browser/content_settings/content_settings_override_provider.cc
@@ -28,9 +28,9 @@ class OverrideRuleIterator : public RuleIterator {
public:
explicit OverrideRuleIterator(bool is_allowed) : is_done_(is_allowed) {}
- virtual bool HasNext() const OVERRIDE { return !is_done_; }
+ virtual bool HasNext() const override { return !is_done_; }
- virtual Rule Next() OVERRIDE {
+ virtual Rule Next() override {
DCHECK(!is_done_);
is_done_ = true;
return Rule(ContentSettingsPattern::Wildcard(),

Powered by Google App Engine
This is Rietveld 408576698