diff options
author | dcheng <dcheng@chromium.org> | 2015-01-15 15:04:24 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-01-15 23:06:16 +0000 |
commit | c97a0288d7c1fc47b1a62641c2a395185186c5dd (patch) | |
tree | 52200186dd7f2d4504139a1b0e8c173a45344a43 /chrome/browser/chromeos/session_length_limiter.cc | |
parent | 2fbb6d9dedfa9ea73cba4c1ae6d86bf740a8fd6b (diff) | |
download | chromium_src-c97a0288d7c1fc47b1a62641c2a395185186c5dd.zip chromium_src-c97a0288d7c1fc47b1a62641c2a395185186c5dd.tar.gz chromium_src-c97a0288d7c1fc47b1a62641c2a395185186c5dd.tar.bz2 |
Update {virtual,override,final} to follow C++11 style in chrome/browser/chromeos.
The Google style guide states that only one of {virtual,override,final}
should be used for each declaration, since override implies virtual and
final implies both virtual and override.
This patch was automatically generated with a ChromeOS build using a
variation of https://codereview.chromium.org/598073004.
BUG=417463
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/849273002
Cr-Commit-Position: refs/heads/master@{#311754}
Diffstat (limited to 'chrome/browser/chromeos/session_length_limiter.cc')
-rw-r--r-- | chrome/browser/chromeos/session_length_limiter.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/chromeos/session_length_limiter.cc b/chrome/browser/chromeos/session_length_limiter.cc index 136db60..f26cf448 100644 --- a/chrome/browser/chromeos/session_length_limiter.cc +++ b/chrome/browser/chromeos/session_length_limiter.cc @@ -34,10 +34,10 @@ const int kSessionLengthLimitMaxMs = 24 * 60 * 60 * 1000; // 24 hours. class SessionLengthLimiterDelegateImpl : public SessionLengthLimiter::Delegate { public: SessionLengthLimiterDelegateImpl(); - virtual ~SessionLengthLimiterDelegateImpl(); + ~SessionLengthLimiterDelegateImpl() override; - virtual const base::TimeTicks GetCurrentTime() const override; - virtual void StopSession() override; + const base::TimeTicks GetCurrentTime() const override; + void StopSession() override; private: DISALLOW_COPY_AND_ASSIGN(SessionLengthLimiterDelegateImpl); |