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

Unified Diff: components/search_engines/template_url_parser_unittest.cc

Issue 623133002: replace OVERRIDE and FINAL with override and final in components/ (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: components/search_engines/template_url_parser_unittest.cc
diff --git a/components/search_engines/template_url_parser_unittest.cc b/components/search_engines/template_url_parser_unittest.cc
index d06c3d73e7407f771a10a6d6e4c210977844b782..4331be0d64604cd3272453de1ff6ed3a7a111af9 100644
--- a/components/search_engines/template_url_parser_unittest.cc
+++ b/components/search_engines/template_url_parser_unittest.cc
@@ -24,7 +24,7 @@ class ParamFilterImpl : public TemplateURLParser::ParameterFilter {
virtual ~ParamFilterImpl();
virtual bool KeepParameter(const std::string& key,
- const std::string& value) OVERRIDE;
+ const std::string& value) override;
private:
std::string name_str_;
@@ -55,7 +55,7 @@ class TemplateURLParserTest : public testing::Test {
TemplateURLParserTest();
virtual ~TemplateURLParserTest();
- virtual void SetUp() OVERRIDE;
+ virtual void SetUp() override;
bool is_disabled() const;

Powered by Google App Engine
This is Rietveld 408576698