| Index: cc/resources/task_graph_runner.h
|
| diff --git a/cc/resources/task_graph_runner.h b/cc/resources/task_graph_runner.h
|
| index eb03467520f3c5cf82eec2be11a329650df62fae..5a55f6d30e3f686f1d9d3fff5df95e2bc8322f5b 100644
|
| --- a/cc/resources/task_graph_runner.h
|
| +++ b/cc/resources/task_graph_runner.h
|
| @@ -26,10 +26,8 @@ class CC_EXPORT Task : public base::RefCountedThreadSafe<Task> {
|
|
|
| virtual void RunOnWorkerThread(unsigned thread_index) = 0;
|
|
|
| - void DidSchedule();
|
| void WillRun();
|
| void DidRun();
|
| -
|
| bool HasFinishedRunning() const;
|
|
|
| protected:
|
| @@ -38,7 +36,6 @@ class CC_EXPORT Task : public base::RefCountedThreadSafe<Task> {
|
| Task();
|
| virtual ~Task();
|
|
|
| - bool did_schedule_;
|
| bool did_run_;
|
| };
|
|
|
|
|