| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 , public WebDevToolsAgentClient | 55 , public WebDevToolsAgentClient |
| 56 , private WorkerLoaderProxyProvider { | 56 , private WorkerLoaderProxyProvider { |
| 57 WTF_MAKE_NONCOPYABLE(WebEmbeddedWorkerImpl); | 57 WTF_MAKE_NONCOPYABLE(WebEmbeddedWorkerImpl); |
| 58 public: | 58 public: |
| 59 WebEmbeddedWorkerImpl(PassOwnPtr<WebServiceWorkerContextClient>, PassOwnPtr<
WebWorkerContentSettingsClientProxy>); | 59 WebEmbeddedWorkerImpl(PassOwnPtr<WebServiceWorkerContextClient>, PassOwnPtr<
WebWorkerContentSettingsClientProxy>); |
| 60 ~WebEmbeddedWorkerImpl() override; | 60 ~WebEmbeddedWorkerImpl() override; |
| 61 | 61 |
| 62 // WebEmbeddedWorker overrides. | 62 // WebEmbeddedWorker overrides. |
| 63 void startWorkerContext(const WebEmbeddedWorkerStartData&) override; | 63 void startWorkerContext(const WebEmbeddedWorkerStartData&) override; |
| 64 void terminateWorkerContext() override; | 64 void terminateWorkerContext() override; |
| 65 void resumeAfterDownload() override; | |
| 66 void attachDevTools(const WebString& hostId, int sessionId) override; | 65 void attachDevTools(const WebString& hostId, int sessionId) override; |
| 67 void reattachDevTools(const WebString& hostId, int sessionId, const WebStrin
g& savedState) override; | 66 void reattachDevTools(const WebString& hostId, int sessionId, const WebStrin
g& savedState) override; |
| 68 void detachDevTools() override; | 67 void detachDevTools() override; |
| 69 void dispatchDevToolsMessage(int sessionId, const WebString&) override; | 68 void dispatchDevToolsMessage(int sessionId, const WebString&) override; |
| 70 | 69 |
| 71 void postMessageToPageInspector(const WTF::String&); | 70 void postMessageToPageInspector(const WTF::String&); |
| 72 | 71 |
| 73 private: | 72 private: |
| 74 void prepareShadowPageForLoader(); | 73 void prepareShadowPageForLoader(); |
| 75 void loadShadowPage(); | 74 void loadShadowPage(); |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 // Both WebView and WebFrame objects are close()'ed (where they're | 114 // Both WebView and WebFrame objects are close()'ed (where they're |
| 116 // deref'ed) when this EmbeddedWorkerImpl is destructed, therefore they | 115 // deref'ed) when this EmbeddedWorkerImpl is destructed, therefore they |
| 117 // are guaranteed to exist while this object is around. | 116 // are guaranteed to exist while this object is around. |
| 118 WebView* m_webView; | 117 WebView* m_webView; |
| 119 RefPtrWillBePersistent<WebLocalFrameImpl> m_mainFrame; | 118 RefPtrWillBePersistent<WebLocalFrameImpl> m_mainFrame; |
| 120 | 119 |
| 121 bool m_loadingShadowPage; | 120 bool m_loadingShadowPage; |
| 122 bool m_askedToTerminate; | 121 bool m_askedToTerminate; |
| 123 | 122 |
| 124 enum WaitingForDebuggerState { | 123 enum WaitingForDebuggerState { |
| 125 WaitingForDebugger, | 124 WaitingForDebuggerBeforeLoadingScript, |
| 125 WaitingForDebuggerAfterScriptLoaded, |
| 126 NotWaitingForDebugger | 126 NotWaitingForDebugger |
| 127 }; | 127 }; |
| 128 | 128 |
| 129 enum { | |
| 130 DontPauseAfterDownload, | |
| 131 DoPauseAfterDownload, | |
| 132 IsPausedAfterDownload | |
| 133 } m_pauseAfterDownloadState; | |
| 134 | |
| 135 WaitingForDebuggerState m_waitingForDebuggerState; | 129 WaitingForDebuggerState m_waitingForDebuggerState; |
| 136 }; | 130 }; |
| 137 | 131 |
| 138 } // namespace blink | 132 } // namespace blink |
| 139 | 133 |
| 140 #endif // WebEmbeddedWorkerImpl_h | 134 #endif // WebEmbeddedWorkerImpl_h |
| OLD | NEW |