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

Unified Diff: chrome/browser/component_updater/component_patcher_operation_out_of_process.h

Issue 663323002: Standardize usage of virtual/override/final in chrome/browser/component_updater/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: formatted 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: chrome/browser/component_updater/component_patcher_operation_out_of_process.h
diff --git a/chrome/browser/component_updater/component_patcher_operation_out_of_process.h b/chrome/browser/component_updater/component_patcher_operation_out_of_process.h
index fdda7a01783cf97eb031ac1236b377c55f3f718a..88c4c602dd5a4f5d35c3925c5357f8a9c2e1ea8e 100644
--- a/chrome/browser/component_updater/component_patcher_operation_out_of_process.h
+++ b/chrome/browser/component_updater/component_patcher_operation_out_of_process.h
@@ -27,15 +27,15 @@ class ChromeOutOfProcessPatcher : public OutOfProcessPatcher {
ChromeOutOfProcessPatcher();
// DeltaUpdateOpPatch::OutOfProcessPatcher implementation.
- virtual void Patch(const std::string& operation,
- scoped_refptr<base::SequencedTaskRunner> task_runner,
- const base::FilePath& input_abs_path,
- const base::FilePath& patch_abs_path,
- const base::FilePath& output_abs_path,
- base::Callback<void(int result)> callback) override;
+ void Patch(const std::string& operation,
+ scoped_refptr<base::SequencedTaskRunner> task_runner,
+ const base::FilePath& input_abs_path,
+ const base::FilePath& patch_abs_path,
+ const base::FilePath& output_abs_path,
+ base::Callback<void(int result)> callback) override;
private:
- virtual ~ChromeOutOfProcessPatcher();
+ ~ChromeOutOfProcessPatcher() override;
scoped_refptr<PatchHost> host_;

Powered by Google App Engine
This is Rietveld 408576698