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

Unified Diff: components/test_runner/test_runner.h

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.h
diff --git a/components/test_runner/test_runner.h b/components/test_runner/test_runner.h
index f4599546949fd567b8deca1befd162da137a841b..7ef524299db783890f3196b7f7bb85f78ad68d4f 100644
--- a/components/test_runner/test_runner.h
+++ b/components/test_runner/test_runner.h
@@ -161,7 +161,7 @@ class TestRunner : public WebTestRunner,
class WorkQueueTask : public WebMethodTask<WorkQueue> {
public:
- WorkQueueTask(WorkQueue* object) : WebMethodTask<WorkQueue>(object) {}
+ WorkQueueTask(WorkQueue* object);
void RunIfValid() override;
};

Powered by Google App Engine
This is Rietveld 408576698