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

Unified Diff: components/component_updater/component_patcher_operation.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/component_updater/component_patcher_operation.h
diff --git a/components/component_updater/component_patcher_operation.h b/components/component_updater/component_patcher_operation.h
index 4867ed7c7e170afd5b853f9bc79ce760f8246d36..02ca26d7c821d158c97f49a77cd3b82189545ae1 100644
--- a/components/component_updater/component_patcher_operation.h
+++ b/components/component_updater/component_patcher_operation.h
@@ -92,9 +92,9 @@ class DeltaUpdateOpCopy : public DeltaUpdateOp {
virtual ComponentUnpacker::Error DoParseArguments(
const base::DictionaryValue* command_args,
const base::FilePath& input_dir,
- ComponentInstaller* installer) OVERRIDE;
+ ComponentInstaller* installer) override;
- virtual void DoRun(const ComponentUnpacker::Callback& callback) OVERRIDE;
+ virtual void DoRun(const ComponentUnpacker::Callback& callback) override;
base::FilePath input_abs_path_;
@@ -116,9 +116,9 @@ class DeltaUpdateOpCreate : public DeltaUpdateOp {
virtual ComponentUnpacker::Error DoParseArguments(
const base::DictionaryValue* command_args,
const base::FilePath& input_dir,
- ComponentInstaller* installer) OVERRIDE;
+ ComponentInstaller* installer) override;
- virtual void DoRun(const ComponentUnpacker::Callback& callback) OVERRIDE;
+ virtual void DoRun(const ComponentUnpacker::Callback& callback) override;
base::FilePath patch_abs_path_;
@@ -159,9 +159,9 @@ class DeltaUpdateOpPatch : public DeltaUpdateOp {
virtual ComponentUnpacker::Error DoParseArguments(
const base::DictionaryValue* command_args,
const base::FilePath& input_dir,
- ComponentInstaller* installer) OVERRIDE;
+ ComponentInstaller* installer) override;
- virtual void DoRun(const ComponentUnpacker::Callback& callback) OVERRIDE;
+ virtual void DoRun(const ComponentUnpacker::Callback& callback) override;
// |success_code| is the code that indicates a successful patch.
// |result| is the code the patching operation returned.
« no previous file with comments | « components/component_updater/background_downloader_win.h ('k') | components/component_updater/component_updater_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698