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; |