| Index: content/renderer/shared_worker_repository.h
|
| diff --git a/content/renderer/shared_worker_repository.h b/content/renderer/shared_worker_repository.h
|
| index ce3b53c497871979a4ce7f1da6dbd10fc42979fc..5be561efc0e1f9cfe9e5cd29cfcbdde1eb50106a 100644
|
| --- a/content/renderer/shared_worker_repository.h
|
| +++ b/content/renderer/shared_worker_repository.h
|
| @@ -11,6 +11,10 @@
|
| #include "content/public/renderer/render_view_observer.h"
|
| #include "third_party/WebKit/public/web/WebSharedWorkerRepositoryClient.h"
|
|
|
| +namespace blink{
|
| +enum WebContentSecurityPolicyType;
|
| +}
|
| +
|
| namespace content {
|
|
|
| class RenderViewImpl;
|
| @@ -25,7 +29,9 @@ class SharedWorkerRepository : public RenderViewObserver,
|
| virtual blink::WebSharedWorkerConnector* createSharedWorkerConnector(
|
| const blink::WebURL& url,
|
| const blink::WebString& name,
|
| - DocumentID document_id) OVERRIDE;
|
| + DocumentID document_id,
|
| + const blink::WebString& content_security_policy,
|
| + blink::WebContentSecurityPolicyType) OVERRIDE;
|
| virtual void documentDetached(DocumentID document_id) OVERRIDE;
|
|
|
| private:
|
|
|