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

Unified Diff: components/variations/variations_seed_simulator_unittest.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/variations/variations_seed_simulator_unittest.cc
diff --git a/components/variations/variations_seed_simulator_unittest.cc b/components/variations/variations_seed_simulator_unittest.cc
index 9ae37dd9caa9d5c46fc3445bdd2ae637b00016e1..bf93fa56cf162d4096a763299c70f78d7272a2c3 100644
--- a/components/variations/variations_seed_simulator_unittest.cc
+++ b/components/variations/variations_seed_simulator_unittest.cc
@@ -22,11 +22,11 @@ class TestEntropyProvider : public base::FieldTrial::EntropyProvider {
public:
explicit TestEntropyProvider(double entropy_value)
: entropy_value_(entropy_value) {}
- virtual ~TestEntropyProvider() {}
+ ~TestEntropyProvider() override {}
// base::FieldTrial::EntropyProvider implementation:
- virtual double GetEntropyForTrial(const std::string& trial_name,
- uint32 randomization_seed) const override {
+ double GetEntropyForTrial(const std::string& trial_name,
+ uint32 randomization_seed) const override {
return entropy_value_;
}
« no previous file with comments | « components/variations/variations_http_header_provider.h ('k') | components/visitedlink/browser/visitedlink_event_listener.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698