| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_RENDERER_SHARED_WORKER_REPOSITORY_H_ | 5 #ifndef CONTENT_RENDERER_SHARED_WORKER_SHARED_WORKER_REPOSITORY_H_ |
| 6 #define CONTENT_RENDERER_SHARED_WORKER_REPOSITORY_H_ | 6 #define CONTENT_RENDERER_SHARED_WORKER_SHARED_WORKER_REPOSITORY_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <set> | 9 #include <set> |
| 10 | 10 |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "third_party/WebKit/public/platform/WebAddressSpace.h" | 12 #include "third_party/WebKit/public/platform/WebAddressSpace.h" |
| 13 #include "third_party/WebKit/public/web/WebContentSecurityPolicy.h" | 13 #include "third_party/WebKit/public/web/WebContentSecurityPolicy.h" |
| 14 #include "third_party/WebKit/public/web/WebSharedWorkerCreationContextType.h" | 14 #include "third_party/WebKit/public/web/WebSharedWorkerCreationContextType.h" |
| 15 #include "third_party/WebKit/public/web/WebSharedWorkerRepositoryClient.h" | 15 #include "third_party/WebKit/public/web/WebSharedWorkerRepositoryClient.h" |
| 16 | 16 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 private: | 39 private: |
| 40 RenderFrameImpl* render_frame_; | 40 RenderFrameImpl* render_frame_; |
| 41 std::set<DocumentID> documents_with_workers_; | 41 std::set<DocumentID> documents_with_workers_; |
| 42 | 42 |
| 43 DISALLOW_COPY_AND_ASSIGN(SharedWorkerRepository); | 43 DISALLOW_COPY_AND_ASSIGN(SharedWorkerRepository); |
| 44 }; | 44 }; |
| 45 | 45 |
| 46 } // namespace content | 46 } // namespace content |
| 47 | 47 |
| 48 #endif // CONTENT_RENDERER_SHARED_WORKER_REPOSITORY_H_ | 48 #endif // CONTENT_RENDERER_SHARED_WORKER_SHARED_WORKER_REPOSITORY_H_ |
| OLD | NEW |