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

Side by Side Diff: components/domain_reliability/util.h

Issue 623133002: replace OVERRIDE and FINAL with override and 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 unified diff | Download patch
« no previous file with comments | « components/domain_reliability/uploader.cc ('k') | components/domain_reliability/util.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 COMPONENTS_DOMAIN_RELIABILITY_UTIL_H_ 5 #ifndef COMPONENTS_DOMAIN_RELIABILITY_UTIL_H_
6 #define COMPONENTS_DOMAIN_RELIABILITY_UTIL_H_ 6 #define COMPONENTS_DOMAIN_RELIABILITY_UTIL_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 #include "base/callback_forward.h" 10 #include "base/callback_forward.h"
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 70
71 // Implementation of MockableTime that passes through to 71 // Implementation of MockableTime that passes through to
72 // base::Time{,Ticks}::Now() and base::Timer. 72 // base::Time{,Ticks}::Now() and base::Timer.
73 class DOMAIN_RELIABILITY_EXPORT ActualTime : public MockableTime { 73 class DOMAIN_RELIABILITY_EXPORT ActualTime : public MockableTime {
74 public: 74 public:
75 ActualTime(); 75 ActualTime();
76 76
77 virtual ~ActualTime(); 77 virtual ~ActualTime();
78 78
79 // MockableTime implementation: 79 // MockableTime implementation:
80 virtual base::Time Now() OVERRIDE; 80 virtual base::Time Now() override;
81 virtual base::TimeTicks NowTicks() OVERRIDE; 81 virtual base::TimeTicks NowTicks() override;
82 virtual scoped_ptr<MockableTime::Timer> CreateTimer() OVERRIDE; 82 virtual scoped_ptr<MockableTime::Timer> CreateTimer() override;
83 }; 83 };
84 84
85 } // namespace domain_reliability 85 } // namespace domain_reliability
86 86
87 #endif // COMPONENTS_DOMAIN_RELIABILITY_UTIL_H_ 87 #endif // COMPONENTS_DOMAIN_RELIABILITY_UTIL_H_
OLDNEW
« no previous file with comments | « components/domain_reliability/uploader.cc ('k') | components/domain_reliability/util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698