diff options
author | mostynb <mostynb@opera.com> | 2014-10-07 10:59:11 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-07 17:59:25 +0000 |
commit | 9e096de10e6fdcafde67df469ed9a6b8b156dfb1 (patch) | |
tree | 301e744a7e3e865e32a6fd0a779c115e926b7fd6 /base/tools_sanity_unittest.cc | |
parent | 35d1d3a0d525595304fc8333373ddb660bd649cc (diff) | |
download | chromium_src-9e096de10e6fdcafde67df469ed9a6b8b156dfb1.zip chromium_src-9e096de10e6fdcafde67df469ed9a6b8b156dfb1.tar.gz chromium_src-9e096de10e6fdcafde67df469ed9a6b8b156dfb1.tar.bz2 |
replace OVERRIDE and FINAL with override and final in base/
BUG=417463
Review URL: https://codereview.chromium.org/611153004
Cr-Commit-Position: refs/heads/master@{#298520}
Diffstat (limited to 'base/tools_sanity_unittest.cc')
-rw-r--r-- | base/tools_sanity_unittest.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/base/tools_sanity_unittest.cc b/base/tools_sanity_unittest.cc index 00eecb4..d61d1c2 100644 --- a/base/tools_sanity_unittest.cc +++ b/base/tools_sanity_unittest.cc @@ -239,7 +239,7 @@ class TOOLS_SANITY_TEST_CONCURRENT_THREAD : public PlatformThread::Delegate { public: explicit TOOLS_SANITY_TEST_CONCURRENT_THREAD(bool *value) : value_(value) {} virtual ~TOOLS_SANITY_TEST_CONCURRENT_THREAD() {} - virtual void ThreadMain() OVERRIDE { + virtual void ThreadMain() override { *value_ = true; // Sleep for a few milliseconds so the two threads are more likely to live @@ -255,7 +255,7 @@ class ReleaseStoreThread : public PlatformThread::Delegate { public: explicit ReleaseStoreThread(base::subtle::Atomic32 *value) : value_(value) {} virtual ~ReleaseStoreThread() {} - virtual void ThreadMain() OVERRIDE { + virtual void ThreadMain() override { base::subtle::Release_Store(value_, kMagicValue); // Sleep for a few milliseconds so the two threads are more likely to live @@ -271,7 +271,7 @@ class AcquireLoadThread : public PlatformThread::Delegate { public: explicit AcquireLoadThread(base::subtle::Atomic32 *value) : value_(value) {} virtual ~AcquireLoadThread() {} - virtual void ThreadMain() OVERRIDE { + virtual void ThreadMain() override { // Wait for the other thread to make Release_Store PlatformThread::Sleep(TimeDelta::FromMilliseconds(100)); base::subtle::Acquire_Load(value_); |