| Index: Source/core/workers/WorkerLoaderProxy.h
|
| diff --git a/Source/core/workers/WorkerLoaderProxy.h b/Source/core/workers/WorkerLoaderProxy.h
|
| index 0727a988c08668b1fdf380b8a22eca7b6df85d03..21e5dd4e3f2d178e0324328446cd0951280ff3fb 100644
|
| --- a/Source/core/workers/WorkerLoaderProxy.h
|
| +++ b/Source/core/workers/WorkerLoaderProxy.h
|
| @@ -37,22 +37,22 @@
|
|
|
| namespace blink {
|
|
|
| - // A proxy to talk to the loader context. Normally, the document on the main thread
|
| - // provides loading services for the subordinate workers. This interface provides 2-way
|
| - // communications to the Document context and back to the worker.
|
| - // Note that in multi-process browsers, the Worker object context and the Document
|
| - // context can be distinct.
|
| - class WorkerLoaderProxy {
|
| - public:
|
| - virtual ~WorkerLoaderProxy() { }
|
| -
|
| - // Posts a task to the thread which runs the loading code (normally, the main thread).
|
| - virtual void postTaskToLoader(PassOwnPtr<ExecutionContextTask>) = 0;
|
| -
|
| - // Posts callbacks from loading code to the WorkerGlobalScope.
|
| - // Returns true if the task was posted successfully.
|
| - virtual bool postTaskToWorkerGlobalScope(PassOwnPtr<ExecutionContextTask>) = 0;
|
| - };
|
| +// A proxy to talk to the loader context. Normally, the document on the main thread
|
| +// provides loading services for the subordinate workers. This interface provides 2-way
|
| +// communications to the Document context and back to the worker.
|
| +// Note that in multi-process browsers, the Worker object context and the Document
|
| +// context can be distinct.
|
| +class WorkerLoaderProxy {
|
| +public:
|
| + virtual ~WorkerLoaderProxy() { }
|
| +
|
| + // Posts a task to the thread which runs the loading code (normally, the main thread).
|
| + virtual void postTaskToLoader(PassOwnPtr<ExecutionContextTask>) = 0;
|
| +
|
| + // Posts callbacks from loading code to the WorkerGlobalScope.
|
| + // Returns true if the task was posted successfully.
|
| + virtual bool postTaskToWorkerGlobalScope(PassOwnPtr<ExecutionContextTask>) = 0;
|
| +};
|
|
|
| } // namespace blink
|
|
|
|
|