| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef WebEmbeddedWorkerImpl_h | 31 #ifndef WebEmbeddedWorkerImpl_h |
| 32 #define WebEmbeddedWorkerImpl_h | 32 #define WebEmbeddedWorkerImpl_h |
| 33 | 33 |
| 34 #include "WebContentSecurityPolicy.h" | 34 #include "WebContentSecurityPolicy.h" |
| 35 #include "WebEmbeddedWorker.h" | 35 #include "WebEmbeddedWorker.h" |
| 36 #include "WebEmbeddedWorkerStartData.h" | 36 #include "WebEmbeddedWorkerStartData.h" |
| 37 #include "WebFrameClient.h" | 37 #include "WebFrameClient.h" |
| 38 #include "core/frame/ContentSecurityPolicyResponseHeaders.h" | |
| 39 | 38 |
| 40 namespace WebCore { | 39 namespace WebCore { |
| 41 class ContentSecurityPolicyResponseHeaders; | |
| 42 class WorkerScriptLoader; | 40 class WorkerScriptLoader; |
| 43 class WorkerThread; | 41 class WorkerThread; |
| 44 } | 42 } |
| 45 | 43 |
| 46 namespace blink { | 44 namespace blink { |
| 47 | 45 |
| 48 class WebView; | 46 class WebView; |
| 49 | 47 |
| 50 class WebEmbeddedWorkerImpl : | 48 class WebEmbeddedWorkerImpl : |
| 51 public WebEmbeddedWorker, | 49 public WebEmbeddedWorker, |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 WebView* m_webView; | 86 WebView* m_webView; |
| 89 WebFrame* m_mainFrame; | 87 WebFrame* m_mainFrame; |
| 90 RefPtr<WebCore::ExecutionContext> m_loadingContext; | 88 RefPtr<WebCore::ExecutionContext> m_loadingContext; |
| 91 | 89 |
| 92 bool m_askedToTerminate; | 90 bool m_askedToTerminate; |
| 93 }; | 91 }; |
| 94 | 92 |
| 95 } // namespace blink | 93 } // namespace blink |
| 96 | 94 |
| 97 #endif // WebEmbeddedWorkerImpl_h | 95 #endif // WebEmbeddedWorkerImpl_h |
| OLD | NEW |