| 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 | 101 |
| 102 // We retain ownership of this one which is for use on the | 102 // We retain ownership of this one which is for use on the |
| 103 // main thread only. | 103 // main thread only. |
| 104 OwnPtr<WebServiceWorkerNetworkProvider> m_networkProvider; | 104 OwnPtr<WebServiceWorkerNetworkProvider> m_networkProvider; |
| 105 | 105 |
| 106 // Kept around only while main script loading is ongoing. | 106 // Kept around only while main script loading is ongoing. |
| 107 RefPtr<WorkerScriptLoader> m_mainScriptLoader; | 107 RefPtr<WorkerScriptLoader> m_mainScriptLoader; |
| 108 | 108 |
| 109 OwnPtr<WorkerThread> m_workerThread; | 109 OwnPtr<WorkerThread> m_workerThread; |
| 110 RefPtr<WorkerLoaderProxy> m_loaderProxy; | 110 RefPtr<WorkerLoaderProxy> m_loaderProxy; |
| 111 OwnPtrWillBePersistent<ServiceWorkerGlobalScopeProxy> m_workerGlobalScopePro
xy; | 111 Persistent<ServiceWorkerGlobalScopeProxy> m_workerGlobalScopeProxy; |
| 112 OwnPtrWillBePersistent<WorkerInspectorProxy> m_workerInspectorProxy; | 112 Persistent<WorkerInspectorProxy> m_workerInspectorProxy; |
| 113 | 113 |
| 114 // 'shadow page' - created to proxy loading requests from the worker. | 114 // 'shadow page' - created to proxy loading requests from the worker. |
| 115 // Both WebView and WebFrame objects are close()'ed (where they're | 115 // Both WebView and WebFrame objects are close()'ed (where they're |
| 116 // deref'ed) when this EmbeddedWorkerImpl is destructed, therefore they | 116 // deref'ed) when this EmbeddedWorkerImpl is destructed, therefore they |
| 117 // are guaranteed to exist while this object is around. | 117 // are guaranteed to exist while this object is around. |
| 118 WebView* m_webView; | 118 WebView* m_webView; |
| 119 RefPtrWillBePersistent<WebLocalFrameImpl> m_mainFrame; | 119 Persistent<WebLocalFrameImpl> m_mainFrame; |
| 120 | 120 |
| 121 bool m_loadingShadowPage; | 121 bool m_loadingShadowPage; |
| 122 bool m_askedToTerminate; | 122 bool m_askedToTerminate; |
| 123 | 123 |
| 124 enum WaitingForDebuggerState { | 124 enum WaitingForDebuggerState { |
| 125 WaitingForDebugger, | 125 WaitingForDebugger, |
| 126 NotWaitingForDebugger | 126 NotWaitingForDebugger |
| 127 }; | 127 }; |
| 128 | 128 |
| 129 enum { | 129 enum { |
| 130 DontPauseAfterDownload, | 130 DontPauseAfterDownload, |
| 131 DoPauseAfterDownload, | 131 DoPauseAfterDownload, |
| 132 IsPausedAfterDownload | 132 IsPausedAfterDownload |
| 133 } m_pauseAfterDownloadState; | 133 } m_pauseAfterDownloadState; |
| 134 | 134 |
| 135 WaitingForDebuggerState m_waitingForDebuggerState; | 135 WaitingForDebuggerState m_waitingForDebuggerState; |
| 136 }; | 136 }; |
| 137 | 137 |
| 138 } // namespace blink | 138 } // namespace blink |
| 139 | 139 |
| 140 #endif // WebEmbeddedWorkerImpl_h | 140 #endif // WebEmbeddedWorkerImpl_h |
| OLD | NEW |