| Index: chrome/browser/metrics/variations/variations_service.h
|
| diff --git a/chrome/browser/metrics/variations/variations_service.h b/chrome/browser/metrics/variations/variations_service.h
|
| index effec59f1f3ff5f00ce87c7b944ce0ed0f869cb1..afcfc6ea7d4ea9c5acc42f4fa95d8393d8b76b23 100644
|
| --- a/chrome/browser/metrics/variations/variations_service.h
|
| +++ b/chrome/browser/metrics/variations/variations_service.h
|
| @@ -72,7 +72,7 @@ class VariationsService
|
| virtual ~Observer() {}
|
| };
|
|
|
| - virtual ~VariationsService();
|
| + ~VariationsService() override;
|
|
|
| // Creates field trials based on Variations Seed loaded from local prefs. If
|
| // there is a problem loading the seed data, all trials specified by the seed
|
| @@ -173,10 +173,10 @@ class VariationsService
|
| const variations::VariationsSeedSimulator::Result& result);
|
|
|
| // net::URLFetcherDelegate implementation:
|
| - virtual void OnURLFetchComplete(const net::URLFetcher* source) override;
|
| + void OnURLFetchComplete(const net::URLFetcher* source) override;
|
|
|
| // ResourceRequestAllowedNotifier::Observer implementation:
|
| - virtual void OnResourceRequestsAllowed() override;
|
| + void OnResourceRequestsAllowed() override;
|
|
|
| // Performs a variations seed simulation with the given |seed| and |version|
|
| // and logs the simulation results as histograms.
|
|
|