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

Unified Diff: components/autofill/core/browser/autofill_xml_parser.h

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/autofill/core/browser/autofill_xml_parser.h
diff --git a/components/autofill/core/browser/autofill_xml_parser.h b/components/autofill/core/browser/autofill_xml_parser.h
index 720ffaf7bf9447844369905ce3249d1bf727ed93..45722a88f869553170ec7a433df671fb6751309e 100644
--- a/components/autofill/core/browser/autofill_xml_parser.h
+++ b/components/autofill/core/browser/autofill_xml_parser.h
@@ -33,7 +33,7 @@ class AutofillXmlParser : public buzz::XmlParseHandler {
// |context| is a parsing context used to resolve element/attribute names.
// |name| is the name of the element.
virtual void EndElement(buzz::XmlParseContext* context,
- const char* name) OVERRIDE;
+ const char* name) override;
// The callback for character data between tags (<element>text...</element>).
// |context| is a parsing context used to resolve element/attribute names.
@@ -42,13 +42,13 @@ class AutofillXmlParser : public buzz::XmlParseHandler {
// |len| is the length of the string pointed to by text.
virtual void CharacterData(buzz::XmlParseContext* context,
const char* text,
- int len) OVERRIDE;
+ int len) override;
// The callback for parsing errors.
// |context| is a parsing context used to resolve names.
// |error_code| is a code representing the parsing error.
virtual void Error(buzz::XmlParseContext* context,
- XML_Error error_code) OVERRIDE;
+ XML_Error error_code) override;
// True if parsing succeeded.
bool succeeded_;
@@ -84,7 +84,7 @@ class AutofillQueryXmlParser : public AutofillXmlParser {
// |attrs| is the list of attributes (names and values) for the element.
virtual void StartElement(buzz::XmlParseContext* context,
const char* name,
- const char** attrs) OVERRIDE;
+ const char** attrs) override;
// A helper function to parse a |WebElementDescriptor|.
// |context| is the current parsing context.
@@ -133,7 +133,7 @@ class AutofillUploadXmlParser : public AutofillXmlParser {
// |attrs| is the list of attributes (names and values) for the element.
virtual void StartElement(buzz::XmlParseContext* context,
const char* name,
- const char** attrs) OVERRIDE;
+ const char** attrs) override;
// A helper function to retrieve double values from strings. Raises an XML
// parse error if it fails.
« no previous file with comments | « components/autofill/core/browser/autofill_profile.h ('k') | components/autofill/core/browser/contact_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698