commit | 14742de33c12fec256750c92098b03c5c940a468 | [log] [tgz] |
---|---|---|
author | Scott Violet <[email protected]> | Tue Jan 09 17:44:55 2018 |
committer | Commit Bot <[email protected]> | Tue Jan 09 22:36:00 2018 |
tree | c6f23b7ec42133b2fa5d2966e39c47a011e10d2e | |
parent | 47ead77cb35ad2a9a83248b292151462a66cd881 [diff] [blame] |
metrics: minor cleanup of platform_field_trials.h The trailing ';' isn't necessary when you have {}, but since I'm changing this may as well use = default; BUG=none TEST=none Change-Id: Ibc96ce7471e82b46ed1291e3350993c5dcbe7762 Reviewed-on: https://chromium-review.googlesource.com/857741 Commit-Queue: Ilya Sherman <[email protected]> Reviewed-by: Ilya Sherman <[email protected]> Cr-Commit-Position: refs/heads/master@{#528140}
diff --git a/components/variations/platform_field_trials.h b/components/variations/platform_field_trials.h index bba99b8..3a7f642 100644 --- a/components/variations/platform_field_trials.h +++ b/components/variations/platform_field_trials.h
@@ -13,8 +13,8 @@ // WebView make use through their corresponding subclasses. class PlatformFieldTrials { public: - PlatformFieldTrials(){}; - virtual ~PlatformFieldTrials(){}; + PlatformFieldTrials() = default; + virtual ~PlatformFieldTrials() = default; // Set up field trials for a specific platform. virtual void SetupFieldTrials() = 0;