summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerThread.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerThread.h')
-rw-r--r--chromium/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerThread.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/chromium/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerThread.h b/chromium/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerThread.h
index 01beb8d1ba4..8efabdcf160 100644
--- a/chromium/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerThread.h
+++ b/chromium/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerThread.h
@@ -30,23 +30,23 @@
#ifndef ServiceWorkerThread_h
#define ServiceWorkerThread_h
-#include "core/frame/ContentSecurityPolicy.h"
+#include "core/frame/csp/ContentSecurityPolicy.h"
#include "core/workers/WorkerThread.h"
namespace WebCore {
-struct WorkerThreadStartupData;
+class WorkerThreadStartupData;
-class ServiceWorkerThread : public WorkerThread {
+class ServiceWorkerThread FINAL : public WorkerThread {
public:
- static PassRefPtr<ServiceWorkerThread> create(WorkerLoaderProxy&, WorkerReportingProxy&, PassOwnPtr<WorkerThreadStartupData>);
+ static PassRefPtr<ServiceWorkerThread> create(WorkerLoaderProxy&, WorkerReportingProxy&, PassOwnPtrWillBeRawPtr<WorkerThreadStartupData>);
virtual ~ServiceWorkerThread();
protected:
- virtual PassRefPtr<WorkerGlobalScope> createWorkerGlobalScope(PassOwnPtr<WorkerThreadStartupData>) OVERRIDE;
+ virtual PassRefPtrWillBeRawPtr<WorkerGlobalScope> createWorkerGlobalScope(PassOwnPtrWillBeRawPtr<WorkerThreadStartupData>) OVERRIDE;
private:
- ServiceWorkerThread(WorkerLoaderProxy&, WorkerReportingProxy&, PassOwnPtr<WorkerThreadStartupData>);
+ ServiceWorkerThread(WorkerLoaderProxy&, WorkerReportingProxy&, PassOwnPtrWillBeRawPtr<WorkerThreadStartupData>);
};
} // namespace WebCore