| Index: Source/core/workers/WorkerScriptLoaderClient.h
|
| diff --git a/Source/core/workers/WorkerScriptLoaderClient.h b/Source/core/workers/WorkerScriptLoaderClient.h
|
| index da545bf90adab039b0b2d6dfb6088ddddfb26b87..1684591e3f981e4902967d35f739327a3c5be0c3 100644
|
| --- a/Source/core/workers/WorkerScriptLoaderClient.h
|
| +++ b/Source/core/workers/WorkerScriptLoaderClient.h
|
| @@ -30,19 +30,19 @@
|
|
|
| namespace blink {
|
|
|
| - class ResourceResponse;
|
| +class ResourceResponse;
|
|
|
| - class WorkerScriptLoaderClient {
|
| - public:
|
| - virtual void didReceiveResponse(unsigned long /*identifier*/, const ResourceResponse&) { }
|
| +class WorkerScriptLoaderClient {
|
| +public:
|
| + virtual void didReceiveResponse(unsigned long /*identifier*/, const ResourceResponse&) { }
|
|
|
| - // FIXME: notifyFinished() is not currently guaranteed to be invoked if used from worker context and the worker shuts down in the middle of an operation.
|
| - // This will cause leaks when we support nested workers.
|
| - virtual void notifyFinished() { }
|
| + // FIXME: notifyFinished() is not currently guaranteed to be invoked if used from worker context and the worker shuts down in the middle of an operation.
|
| + // This will cause leaks when we support nested workers.
|
| + virtual void notifyFinished() { }
|
|
|
| - protected:
|
| - virtual ~WorkerScriptLoaderClient() { }
|
| - };
|
| +protected:
|
| + virtual ~WorkerScriptLoaderClient() { }
|
| +};
|
|
|
| } // namespace blink
|
|
|
|
|