Index: Source/core/workers/DedicatedWorkerThread.h |
diff --git a/Source/core/workers/DedicatedWorkerThread.h b/Source/core/workers/DedicatedWorkerThread.h |
index ab65daf434524fac1c4f150a83919724e430d358..f386506dbe106648b52240d20dda765dea41dcbd 100644 |
--- a/Source/core/workers/DedicatedWorkerThread.h |
+++ b/Source/core/workers/DedicatedWorkerThread.h |
@@ -39,7 +39,7 @@ namespace WebCore { |
class DedicatedWorkerThread : public WorkerThread { |
public: |
- static PassRefPtr<DedicatedWorkerThread> create(const KURL& scriptURL, const String& userAgent, const GroupSettings*, const String& sourceCode, WorkerLoaderProxy&, WorkerObjectProxy&, WorkerThreadStartMode, const String& contentSecurityPolicy, ContentSecurityPolicy::HeaderType, const SecurityOrigin* topOrigin); |
+ static PassRefPtr<DedicatedWorkerThread> create(const KURL& scriptURL, const String& userAgent, const GroupSettings*, const String& sourceCode, WorkerLoaderProxy&, WorkerObjectProxy&, WorkerThreadStartMode, const String& contentSecurityPolicy, ContentSecurityPolicy::HeaderType, const SecurityOrigin* topOrigin, double timeOrigin); |
WorkerObjectProxy& workerObjectProxy() const { return m_workerObjectProxy; } |
virtual ~DedicatedWorkerThread(); |
@@ -48,9 +48,10 @@ namespace WebCore { |
virtual void runEventLoop() OVERRIDE; |
private: |
- DedicatedWorkerThread(const KURL&, const String& userAgent, const GroupSettings*, const String& sourceCode, WorkerLoaderProxy&, WorkerObjectProxy&, WorkerThreadStartMode, const String& contentSecurityPolicy, ContentSecurityPolicy::HeaderType, const SecurityOrigin* topOrigin); |
+ DedicatedWorkerThread(const KURL&, const String& userAgent, const GroupSettings*, const String& sourceCode, WorkerLoaderProxy&, WorkerObjectProxy&, WorkerThreadStartMode, const String& contentSecurityPolicy, ContentSecurityPolicy::HeaderType, const SecurityOrigin* topOrigin, double timeOrigin); |
WorkerObjectProxy& m_workerObjectProxy; |
+ double m_timeOrigin; |
}; |
} // namespace WebCore |