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

Unified Diff: components/component_updater/update_checker.cc

Issue 666133002: Standardize usage of virtual/override/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/update_checker.cc
diff --git a/components/component_updater/update_checker.cc b/components/component_updater/update_checker.cc
index 3bfff63980a9004ad948bd605cca3e39910b3f49..f14263c2e946452b3ad4be1c1d94bac796e2545d 100644
--- a/components/component_updater/update_checker.cc
+++ b/components/component_updater/update_checker.cc
@@ -79,10 +79,10 @@ std::string BuildUpdateCheckRequest(const Configurator& config,
class UpdateCheckerImpl : public UpdateChecker {
public:
explicit UpdateCheckerImpl(const Configurator& config);
- virtual ~UpdateCheckerImpl();
+ ~UpdateCheckerImpl() override;
// Overrides for UpdateChecker.
- virtual bool CheckForUpdates(
+ bool CheckForUpdates(
const std::vector<CrxUpdateItem*>& items_to_check,
const std::string& additional_attributes,
const UpdateCheckCallback& update_check_callback) override;

Powered by Google App Engine
This is Rietveld 408576698