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

Unified Diff: extensions/browser/api/web_request/form_data_parser.cc

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/web_request/form_data_parser.cc
diff --git a/extensions/browser/api/web_request/form_data_parser.cc b/extensions/browser/api/web_request/form_data_parser.cc
index b3a820b9f586e28000819a9fc5ee9ed97f1ffa01..4eebda8307f1991384e8e241285d9607a0eb9759 100644
--- a/extensions/browser/api/web_request/form_data_parser.cc
+++ b/extensions/browser/api/web_request/form_data_parser.cc
@@ -82,9 +82,9 @@ class FormDataParserUrlEncoded : public FormDataParser {
virtual ~FormDataParserUrlEncoded();
// Implementation of FormDataParser.
- virtual bool AllDataReadOK() OVERRIDE;
- virtual bool GetNextNameValue(Result* result) OVERRIDE;
- virtual bool SetSource(base::StringPiece source) OVERRIDE;
+ virtual bool AllDataReadOK() override;
+ virtual bool GetNextNameValue(Result* result) override;
+ virtual bool SetSource(base::StringPiece source) override;
private:
// Returns the pattern to match a single name-value pair. This could be even
@@ -193,9 +193,9 @@ class FormDataParserMultipart : public FormDataParser {
virtual ~FormDataParserMultipart();
// Implementation of FormDataParser.
- virtual bool AllDataReadOK() OVERRIDE;
- virtual bool GetNextNameValue(Result* result) OVERRIDE;
- virtual bool SetSource(base::StringPiece source) OVERRIDE;
+ virtual bool AllDataReadOK() override;
+ virtual bool GetNextNameValue(Result* result) override;
+ virtual bool SetSource(base::StringPiece source) override;
private:
enum State {
« no previous file with comments | « extensions/browser/api/usb/usb_device_resource.h ('k') | extensions/browser/api/web_request/upload_data_presenter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698