| Index: third_party/WebKit/Source/platform/WebTaskRunner.h
|
| diff --git a/third_party/WebKit/Source/platform/WebTaskRunner.h b/third_party/WebKit/Source/platform/WebTaskRunner.h
|
| index b6cf972f84d58e5b9cf7f41c16fa95d449c0da33..073e1ee9573459779b046c14256f5282de662a6c 100644
|
| --- a/third_party/WebKit/Source/platform/WebTaskRunner.h
|
| +++ b/third_party/WebKit/Source/platform/WebTaskRunner.h
|
| @@ -60,22 +60,6 @@ class BLINK_PLATFORM_EXPORT WebTaskRunner {
|
| public:
|
| virtual ~WebTaskRunner() {}
|
|
|
| - class BLINK_PLATFORM_EXPORT Task {
|
| - public:
|
| - virtual ~Task() {}
|
| - virtual void run() = 0;
|
| - };
|
| -
|
| - // Schedule a task to be run on the the associated WebThread.
|
| - // Takes ownership of |Task|. Can be called from any thread.
|
| - virtual void postTask(const WebTraceLocation&, Task*) = 0;
|
| -
|
| - // Schedule a task to be run after |delayMs| on the the associated WebThread.
|
| - // Takes ownership of |Task|. Can be called from any thread.
|
| - virtual void postDelayedTask(const WebTraceLocation&,
|
| - Task*,
|
| - double delayMs) = 0;
|
| -
|
| // Schedule a task to be run after |delayMs| on the the associated WebThread.
|
| // Can be called from any thread.
|
| virtual void postDelayedTask(const WebTraceLocation&,
|
|
|