| Index: Source/core/workers/WorkerScriptLoader.h
|
| diff --git a/Source/core/workers/WorkerScriptLoader.h b/Source/core/workers/WorkerScriptLoader.h
|
| index 00be0ba6624aad799806e783d06a169f14f6f47a..14bd126a18daf92e102f3238363e74f09b584e6b 100644
|
| --- a/Source/core/workers/WorkerScriptLoader.h
|
| +++ b/Source/core/workers/WorkerScriptLoader.h
|
| @@ -76,7 +76,7 @@ namespace WebCore {
|
| virtual void didFail(const ResourceError&) OVERRIDE;
|
| virtual void didFailRedirectCheck() OVERRIDE;
|
|
|
| - void setTargetType(ResourceRequest::TargetType targetType) { m_targetType = targetType; }
|
| + void setRequestContext(ResourceRequest::RequestContext requestContext) { m_requestContext = requestContext; }
|
|
|
| private:
|
| friend class WTF::RefCounted<WorkerScriptLoader>;
|
| @@ -97,7 +97,7 @@ namespace WebCore {
|
| bool m_failed;
|
| unsigned long m_identifier;
|
| bool m_finishing;
|
| - ResourceRequest::TargetType m_targetType;
|
| + ResourceRequest::RequestContext m_requestContext;
|
| };
|
|
|
| } // namespace WebCore
|
|
|