summaryrefslogtreecommitdiffstats
path: root/cc/debug/unittest_only_benchmark.h
diff options
context:
space:
mode:
authordcheng <dcheng@chromium.org>2014-10-21 02:51:08 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-21 09:51:37 +0000
commit716bedf160f4c4c1945cab54c3f490424a0eb779 (patch)
treec9592751a48527e3278a8a1e001b0569c97ff1d5 /cc/debug/unittest_only_benchmark.h
parent6c879fbd35d14af9ca4fe53bc622edac2d3fd5f1 (diff)
downloadchromium_src-716bedf160f4c4c1945cab54c3f490424a0eb779.zip
chromium_src-716bedf160f4c4c1945cab54c3f490424a0eb779.tar.gz
chromium_src-716bedf160f4c4c1945cab54c3f490424a0eb779.tar.bz2
Standardize usage of virtual/override/final in cc/
BUG=417463 TBR=enne@chromium.org Review URL: https://codereview.chromium.org/645853008 Cr-Commit-Position: refs/heads/master@{#300439}
Diffstat (limited to 'cc/debug/unittest_only_benchmark.h')
-rw-r--r--cc/debug/unittest_only_benchmark.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/cc/debug/unittest_only_benchmark.h b/cc/debug/unittest_only_benchmark.h
index 277d85f..7fa2b4d 100644
--- a/cc/debug/unittest_only_benchmark.h
+++ b/cc/debug/unittest_only_benchmark.h
@@ -14,13 +14,13 @@ class CC_EXPORT UnittestOnlyBenchmark : public MicroBenchmark {
public:
UnittestOnlyBenchmark(scoped_ptr<base::Value> value,
const DoneCallback& callback);
- virtual ~UnittestOnlyBenchmark();
+ ~UnittestOnlyBenchmark() override;
- virtual void DidUpdateLayers(LayerTreeHost* host) override;
- virtual bool ProcessMessage(scoped_ptr<base::Value> value) override;
+ void DidUpdateLayers(LayerTreeHost* host) override;
+ bool ProcessMessage(scoped_ptr<base::Value> value) override;
protected:
- virtual scoped_ptr<MicroBenchmarkImpl> CreateBenchmarkImpl(
+ scoped_ptr<MicroBenchmarkImpl> CreateBenchmarkImpl(
scoped_refptr<base::MessageLoopProxy> origin_loop) override;
private: