| Index: content/renderer/shared_worker_repository.h
|
| diff --git a/content/renderer/shared_worker_repository.h b/content/renderer/shared_worker_repository.h
|
| index 1263e8cb52a7df1a1c37f22bd6b156c2779cbaca..35537819f2d40df4ef13d8a4d8bf09faa67f9ff9 100644
|
| --- a/content/renderer/shared_worker_repository.h
|
| +++ b/content/renderer/shared_worker_repository.h
|
| @@ -9,6 +9,7 @@
|
|
|
| #include "base/basictypes.h"
|
| #include "content/public/renderer/render_frame_observer.h"
|
| +#include "third_party/WebKit/public/web/WebContentSecurityPolicy.h"
|
| #include "third_party/WebKit/public/web/WebSharedWorkerRepositoryClient.h"
|
|
|
| namespace content {
|
| @@ -28,7 +29,9 @@ class SharedWorkerRepository : public RenderFrameObserver,
|
| 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:
|
|
|