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

Unified Diff: components/autofill/core/browser/autofill_xml_parser_unittest.cc

Issue 684513002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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/autofill/core/browser/autofill_xml_parser_unittest.cc
diff --git a/components/autofill/core/browser/autofill_xml_parser_unittest.cc b/components/autofill/core/browser/autofill_xml_parser_unittest.cc
index ad2489af4387d801609aa9752cb7967f0a572111..b97c7746ccc2c1b388fd43135d72a13dca44f565 100644
--- a/components/autofill/core/browser/autofill_xml_parser_unittest.cc
+++ b/components/autofill/core/browser/autofill_xml_parser_unittest.cc
@@ -18,7 +18,7 @@ namespace {
class AutofillQueryXmlParserTest : public testing::Test {
public:
AutofillQueryXmlParserTest(): upload_required_(USE_UPLOAD_RATES) {};
- virtual ~AutofillQueryXmlParserTest() {};
+ ~AutofillQueryXmlParserTest() override{};
protected:
void ParseQueryXML(const std::string& xml, bool should_succeed) {
@@ -37,7 +37,7 @@ class AutofillQueryXmlParserTest : public testing::Test {
class AutofillUploadXmlParserTest : public testing::Test {
public:
AutofillUploadXmlParserTest(): positive_(0), negative_(0) {};
- virtual ~AutofillUploadXmlParserTest() {};
+ ~AutofillUploadXmlParserTest() override{};
protected:
void ParseUploadXML(const std::string& xml, bool should_succeed) {

Powered by Google App Engine
This is Rietveld 408576698