Index: Source/core/workers/DedicatedWorkerContext.h |
diff --git a/Source/core/workers/DedicatedWorkerContext.h b/Source/core/workers/DedicatedWorkerContext.h |
index e3b9c803074f4f607a023844c965cdbf89298b2a..dfbdbaea25835ba9dae14f716539dee97ee838f1 100644 |
--- a/Source/core/workers/DedicatedWorkerContext.h |
+++ b/Source/core/workers/DedicatedWorkerContext.h |
@@ -42,7 +42,7 @@ namespace WebCore { |
class DedicatedWorkerContext : public WorkerContext { |
public: |
typedef WorkerContext Base; |
- static PassRefPtr<DedicatedWorkerContext> create(const KURL&, const String& userAgent, PassOwnPtr<GroupSettings>, DedicatedWorkerThread*, const String& contentSecurityPolicy, ContentSecurityPolicy::HeaderType contentSecurityPolicyType, PassRefPtr<SecurityOrigin> topOrigin); |
+ static PassRefPtr<DedicatedWorkerContext> create(const KURL&, const String& userAgent, PassOwnPtr<GroupSettings>, DedicatedWorkerThread*, const String& contentSecurityPolicy, ContentSecurityPolicy::HeaderType contentSecurityPolicyType, PassRefPtr<SecurityOrigin> topOrigin, double timeOrigin); |
virtual ~DedicatedWorkerContext(); |
virtual bool isDedicatedWorkerContext() const OVERRIDE { return true; } |
@@ -60,7 +60,7 @@ namespace WebCore { |
DedicatedWorkerThread* thread(); |
private: |
- DedicatedWorkerContext(const KURL&, const String& userAgent, PassOwnPtr<GroupSettings>, DedicatedWorkerThread*, PassRefPtr<SecurityOrigin> topOrigin); |
+ DedicatedWorkerContext(const KURL&, const String& userAgent, PassOwnPtr<GroupSettings>, DedicatedWorkerThread*, PassRefPtr<SecurityOrigin> topOrigin, double timeOrigin); |
}; |
} // namespace WebCore |