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

Unified Diff: components/variations/caching_permuted_entropy_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
« no previous file with comments | « components/user_prefs/user_prefs.h ('k') | components/variations/entropy_provider.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/variations/caching_permuted_entropy_provider.h
diff --git a/components/variations/caching_permuted_entropy_provider.h b/components/variations/caching_permuted_entropy_provider.h
index e73ed69e66f4c7b935aea34eded561c6b0860333..0ec859fb8cce3641bb5038d0ff2b15d5f2c044e0 100644
--- a/components/variations/caching_permuted_entropy_provider.h
+++ b/components/variations/caching_permuted_entropy_provider.h
@@ -27,7 +27,7 @@ class CachingPermutedEntropyProvider : public PermutedEntropyProvider {
CachingPermutedEntropyProvider(PrefService* local_state,
uint16 low_entropy_source,
size_t low_entropy_source_max);
- virtual ~CachingPermutedEntropyProvider();
+ ~CachingPermutedEntropyProvider() override;
// Registers pref keys used by this class in the Local State pref registry.
static void RegisterPrefs(PrefRegistrySimple* registry);
@@ -38,7 +38,7 @@ class CachingPermutedEntropyProvider : public PermutedEntropyProvider {
private:
// PermutedEntropyProvider overrides:
- virtual uint16 GetPermutedValue(uint32 randomization_seed) const override;
+ uint16 GetPermutedValue(uint32 randomization_seed) const override;
// Reads the cache from local state.
void ReadFromLocalState() const;
« no previous file with comments | « components/user_prefs/user_prefs.h ('k') | components/variations/entropy_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698