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

Side by Side Diff: chrome/browser/metrics/field_trial_synchronizer.h

Issue 624173002: replace OVERRIDE and FINAL with override and final in chrome/browser/[j-q]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_METRICS_FIELD_TRIAL_SYNCHRONIZER_H_ 5 #ifndef CHROME_BROWSER_METRICS_FIELD_TRIAL_SYNCHRONIZER_H_
6 #define CHROME_BROWSER_METRICS_FIELD_TRIAL_SYNCHRONIZER_H_ 6 #define CHROME_BROWSER_METRICS_FIELD_TRIAL_SYNCHRONIZER_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 29 matching lines...) Expand all
40 const std::string& group_name); 40 const std::string& group_name);
41 41
42 // FieldTrialList::Observer methods: 42 // FieldTrialList::Observer methods:
43 43
44 // This method is called by the FieldTrialList singleton when a trial's group 44 // This method is called by the FieldTrialList singleton when a trial's group
45 // is finalized. This method contacts all renderers (by calling 45 // is finalized. This method contacts all renderers (by calling
46 // NotifyAllRenderers) to create a FieldTrial that carries the randomly 46 // NotifyAllRenderers) to create a FieldTrial that carries the randomly
47 // selected state from the browser process into all the renderer processes. 47 // selected state from the browser process into all the renderer processes.
48 virtual void OnFieldTrialGroupFinalized( 48 virtual void OnFieldTrialGroupFinalized(
49 const std::string& name, 49 const std::string& name,
50 const std::string& group_name) OVERRIDE; 50 const std::string& group_name) override;
51 51
52 private: 52 private:
53 friend class base::RefCountedThreadSafe<FieldTrialSynchronizer>; 53 friend class base::RefCountedThreadSafe<FieldTrialSynchronizer>;
54 virtual ~FieldTrialSynchronizer(); 54 virtual ~FieldTrialSynchronizer();
55 55
56 DISALLOW_COPY_AND_ASSIGN(FieldTrialSynchronizer); 56 DISALLOW_COPY_AND_ASSIGN(FieldTrialSynchronizer);
57 }; 57 };
58 58
59 #endif // CHROME_BROWSER_METRICS_FIELD_TRIAL_SYNCHRONIZER_H_ 59 #endif // CHROME_BROWSER_METRICS_FIELD_TRIAL_SYNCHRONIZER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698