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

Unified Diff: chrome/browser/extensions/api/declarative_content/chrome_content_rules_registry.h

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/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: chrome/browser/extensions/api/declarative_content/chrome_content_rules_registry.h
diff --git a/chrome/browser/extensions/api/declarative_content/chrome_content_rules_registry.h b/chrome/browser/extensions/api/declarative_content/chrome_content_rules_registry.h
index ef9d985d844760a89ff02e81d0865a0347b3ae76..a792ce4a2acc1a75c11f8f3615e112dbefa572c5 100644
--- a/chrome/browser/extensions/api/declarative_content/chrome_content_rules_registry.h
+++ b/chrome/browser/extensions/api/declarative_content/chrome_content_rules_registry.h
@@ -72,28 +72,28 @@ class ChromeContentRulesRegistry : public ContentRulesRegistry,
// page navigation, for now) from the renderer.
virtual void Apply(
content::WebContents* contents,
- const std::vector<std::string>& matching_css_selectors) OVERRIDE;
+ const std::vector<std::string>& matching_css_selectors) override;
// Applies all content rules given that a tab was just navigated.
virtual void DidNavigateMainFrame(
content::WebContents* tab,
const content::LoadCommittedDetails& details,
- const content::FrameNavigateParams& params) OVERRIDE;
+ const content::FrameNavigateParams& params) override;
// Implementation of RulesRegistry:
virtual std::string AddRulesImpl(
const std::string& extension_id,
- const std::vector<linked_ptr<RulesRegistry::Rule> >& rules) OVERRIDE;
+ const std::vector<linked_ptr<RulesRegistry::Rule> >& rules) override;
virtual std::string RemoveRulesImpl(
const std::string& extension_id,
- const std::vector<std::string>& rule_identifiers) OVERRIDE;
+ const std::vector<std::string>& rule_identifiers) override;
virtual std::string RemoveAllRulesImpl(
- const std::string& extension_id) OVERRIDE;
+ const std::string& extension_id) override;
// content::NotificationObserver implementation.
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
// Returns true if this object retains no allocated data. Only for debugging.
bool IsEmpty() const;

Powered by Google App Engine
This is Rietveld 408576698