| 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 25 matching lines...) Expand all Loading... |
| 36 #include "public/web/WebEmbeddedWorker.h" | 36 #include "public/web/WebEmbeddedWorker.h" |
| 37 #include "public/web/WebEmbeddedWorkerStartData.h" | 37 #include "public/web/WebEmbeddedWorkerStartData.h" |
| 38 #include "public/web/WebFrameClient.h" | 38 #include "public/web/WebFrameClient.h" |
| 39 | 39 |
| 40 namespace blink { | 40 namespace blink { |
| 41 | 41 |
| 42 class ServiceWorkerGlobalScopeProxy; | 42 class ServiceWorkerGlobalScopeProxy; |
| 43 class WebServiceWorkerNetworkProvider; | 43 class WebServiceWorkerNetworkProvider; |
| 44 class WebView; | 44 class WebView; |
| 45 class WorkerInspectorProxy; | 45 class WorkerInspectorProxy; |
| 46 class WorkerScriptLoader; | |
| 47 class WorkerThread; | 46 class WorkerThread; |
| 48 | 47 |
| 49 class WebEmbeddedWorkerImpl final | 48 class WebEmbeddedWorkerImpl final |
| 50 : public WebEmbeddedWorker | 49 : public WebEmbeddedWorker |
| 51 , public WebFrameClient | 50 , public WebFrameClient |
| 52 , public WebDevToolsAgentClient { | 51 , public WebDevToolsAgentClient { |
| 53 WTF_MAKE_NONCOPYABLE(WebEmbeddedWorkerImpl); | 52 WTF_MAKE_NONCOPYABLE(WebEmbeddedWorkerImpl); |
| 54 public: | 53 public: |
| 55 WebEmbeddedWorkerImpl( | 54 WebEmbeddedWorkerImpl( |
| 56 PassOwnPtr<WebServiceWorkerContextClient>, | 55 PassOwnPtr<WebServiceWorkerContextClient>, |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 DoPauseAfterDownload, | 134 DoPauseAfterDownload, |
| 136 IsPausedAfterDownload | 135 IsPausedAfterDownload |
| 137 } m_pauseAfterDownloadState; | 136 } m_pauseAfterDownloadState; |
| 138 | 137 |
| 139 WaitingForDebuggerState m_waitingForDebuggerState; | 138 WaitingForDebuggerState m_waitingForDebuggerState; |
| 140 }; | 139 }; |
| 141 | 140 |
| 142 } // namespace blink | 141 } // namespace blink |
| 143 | 142 |
| 144 #endif // WebEmbeddedWorkerImpl_h | 143 #endif // WebEmbeddedWorkerImpl_h |
| OLD | NEW |