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

Unified Diff: extensions/browser/api/declarative_webrequest/webrequest_rules_registry.h

Issue 622343002: replace OVERRIDE and FINAL with override and 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/declarative_webrequest/webrequest_rules_registry.h
diff --git a/extensions/browser/api/declarative_webrequest/webrequest_rules_registry.h b/extensions/browser/api/declarative_webrequest/webrequest_rules_registry.h
index 3d6f69acbc985f697db26a5c270e2d8b288a329e..605d4740866664d958b0177029a99d529de4db00 100644
--- a/extensions/browser/api/declarative_webrequest/webrequest_rules_registry.h
+++ b/extensions/browser/api/declarative_webrequest/webrequest_rules_registry.h
@@ -97,12 +97,12 @@ class WebRequestRulesRegistry : public RulesRegistry {
// 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;
// Returns true if this object retains no allocated data. Only for debugging.
bool IsEmpty() const;

Powered by Google App Engine
This is Rietveld 408576698