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

Unified Diff: dm/DMTask.cpp

Issue 76903002: Fix a warning building DM using ninja on Mac. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 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 | « dm/DMTask.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dm/DMTask.cpp
diff --git a/dm/DMTask.cpp b/dm/DMTask.cpp
index 9b463f90031b555c27f5470c0c7fb1a33c11baa8..ba74a5f4098c0547d73bc5144062c20725e0aa92 100644
--- a/dm/DMTask.cpp
+++ b/dm/DMTask.cpp
@@ -12,7 +12,10 @@ Task::Task(Reporter* reporter, TaskRunner* taskRunner)
fReporter->start();
}
-Task::Task(const Task& that) : fReporter(that.fReporter), fTaskRunner(that.fTaskRunner) {
+Task::Task(const Task& that)
+ : INHERITED(that)
+ , fReporter(that.fReporter)
+ , fTaskRunner(that.fTaskRunner) {
fReporter->start();
}
« no previous file with comments | « dm/DMTask.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698