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

Unified Diff: components/test_runner/test_runner.cc

Issue 1499793003: Fix classes that have too many virtuals for inline constructors. Base URL: https://chromium.googlesource.com/chromium/src.git@enable-virtuals-as-complexity
Patch Set: Finish fixing the codebase that's accessible from Linux. Created 5 years 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
Index: components/test_runner/test_runner.cc
diff --git a/components/test_runner/test_runner.cc b/components/test_runner/test_runner.cc
index 2ffbee56bf67b22984b3ecb21694717e2ecca392..8440d25f8e1a743b8f718920e90bb46f75db0e1a 100644
--- a/components/test_runner/test_runner.cc
+++ b/components/test_runner/test_runner.cc
@@ -1623,6 +1623,9 @@ void TestRunner::WorkQueue::ProcessWork() {
controller_->delegate_->TestFinished();
}
+TestRunner::WorkQueue::WorkQueueTask::WorkQueueTask(WorkQueue* object)
+ : WebMethodTask<WorkQueue>(object) {}
+
void TestRunner::WorkQueue::WorkQueueTask::RunIfValid() {
object_->ProcessWork();
}

Powered by Google App Engine
This is Rietveld 408576698