summaryrefslogtreecommitdiffstats
path: root/cc/resources/task_graph_runner_perftest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'cc/resources/task_graph_runner_perftest.cc')
-rw-r--r--cc/resources/task_graph_runner_perftest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/cc/resources/task_graph_runner_perftest.cc b/cc/resources/task_graph_runner_perftest.cc
index 2ce6dc8..7809e58 100644
--- a/cc/resources/task_graph_runner_perftest.cc
+++ b/cc/resources/task_graph_runner_perftest.cc
@@ -27,12 +27,12 @@ class PerfTaskImpl : public Task {
PerfTaskImpl() {}
// Overridden from Task:
- virtual void RunOnWorkerThread() override {}
+ void RunOnWorkerThread() override {}
void Reset() { did_run_ = false; }
private:
- virtual ~PerfTaskImpl() {}
+ ~PerfTaskImpl() override {}
DISALLOW_COPY_AND_ASSIGN(PerfTaskImpl);
};