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

Unified Diff: test/unittests/libplatform/task-queue-unittest.cc

Issue 1412223018: [presubmit] Enabling readability/inheritance linter checking. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressing comments Created 5 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/unittests/base/platform/semaphore-unittest.cc ('k') | test/unittests/run-all-unittests.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/unittests/libplatform/task-queue-unittest.cc
diff --git a/test/unittests/libplatform/task-queue-unittest.cc b/test/unittests/libplatform/task-queue-unittest.cc
index d6ddaa3b7e166c93cb1e0c93e027a44108d71fd8..2de104b9c03a40dc8c62f151aa79e033183b6479 100644
--- a/test/unittests/libplatform/task-queue-unittest.cc
+++ b/test/unittests/libplatform/task-queue-unittest.cc
@@ -26,7 +26,7 @@ class TaskQueueThread final : public base::Thread {
explicit TaskQueueThread(TaskQueue* queue)
: Thread(Options("libplatform TaskQueueThread")), queue_(queue) {}
- virtual void Run() override { EXPECT_THAT(queue_->GetNext(), IsNull()); }
+ void Run() override { EXPECT_THAT(queue_->GetNext(), IsNull()); }
private:
TaskQueue* queue_;
« no previous file with comments | « test/unittests/base/platform/semaphore-unittest.cc ('k') | test/unittests/run-all-unittests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698