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

Unified Diff: components/variations/variations_http_header_provider.h

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/variations/variations_http_header_provider.h
diff --git a/components/variations/variations_http_header_provider.h b/components/variations/variations_http_header_provider.h
index 30cdc3afeaa5d6434f656fe6472bb514197de31e..4bb797692cba131ef41ab0ff820ce4a22c3e927e 100644
--- a/components/variations/variations_http_header_provider.h
+++ b/components/variations/variations_http_header_provider.h
@@ -64,14 +64,13 @@ class VariationsHttpHeaderProvider : base::FieldTrialList::Observer {
OnFieldTrialGroupFinalized);
VariationsHttpHeaderProvider();
- virtual ~VariationsHttpHeaderProvider();
+ ~VariationsHttpHeaderProvider() override;
// base::FieldTrialList::Observer implementation.
// This will add the variation ID associated with |trial_name| and
// |group_name| to the variation ID cache.
- virtual void OnFieldTrialGroupFinalized(
- const std::string& trial_name,
- const std::string& group_name) override;
+ void OnFieldTrialGroupFinalized(const std::string& trial_name,
+ const std::string& group_name) override;
// Prepares the variation IDs cache with initial values if not already done.
// This method also registers the caller with the FieldTrialList to receive
« no previous file with comments | « components/variations/entropy_provider_unittest.cc ('k') | components/variations/variations_seed_simulator_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698