summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/workers/SharedWorkerThread.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/workers/SharedWorkerThread.h')
-rw-r--r--chromium/third_party/WebKit/Source/core/workers/SharedWorkerThread.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/chromium/third_party/WebKit/Source/core/workers/SharedWorkerThread.h b/chromium/third_party/WebKit/Source/core/workers/SharedWorkerThread.h
index ca1f15e7b95..46cb8738a6b 100644
--- a/chromium/third_party/WebKit/Source/core/workers/SharedWorkerThread.h
+++ b/chromium/third_party/WebKit/Source/core/workers/SharedWorkerThread.h
@@ -30,23 +30,23 @@
#ifndef SharedWorkerThread_h
#define SharedWorkerThread_h
-#include "core/frame/ContentSecurityPolicy.h"
+#include "core/frame/csp/ContentSecurityPolicy.h"
#include "core/workers/WorkerThread.h"
namespace WebCore {
-struct WorkerThreadStartupData;
+class WorkerThreadStartupData;
class SharedWorkerThread : public WorkerThread {
public:
- static PassRefPtr<SharedWorkerThread> create(const String& name, WorkerLoaderProxy&, WorkerReportingProxy&, PassOwnPtr<WorkerThreadStartupData>);
+ static PassRefPtr<SharedWorkerThread> create(const String& name, WorkerLoaderProxy&, WorkerReportingProxy&, PassOwnPtrWillBeRawPtr<WorkerThreadStartupData>);
virtual ~SharedWorkerThread();
protected:
- virtual PassRefPtr<WorkerGlobalScope> createWorkerGlobalScope(PassOwnPtr<WorkerThreadStartupData>) OVERRIDE;
+ virtual PassRefPtrWillBeRawPtr<WorkerGlobalScope> createWorkerGlobalScope(PassOwnPtrWillBeRawPtr<WorkerThreadStartupData>) OVERRIDE;
private:
- SharedWorkerThread(const String& name, WorkerLoaderProxy&, WorkerReportingProxy&, PassOwnPtr<WorkerThreadStartupData>);
+ SharedWorkerThread(const String& name, WorkerLoaderProxy&, WorkerReportingProxy&, PassOwnPtrWillBeRawPtr<WorkerThreadStartupData>);
String m_name;
};