| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 ~WebEmbeddedWorkerImpl() override; | 63 ~WebEmbeddedWorkerImpl() override; |
| 64 | 64 |
| 65 // WebEmbeddedWorker overrides. | 65 // WebEmbeddedWorker overrides. |
| 66 void StartWorkerContext(const WebEmbeddedWorkerStartData&) override; | 66 void StartWorkerContext(const WebEmbeddedWorkerStartData&) override; |
| 67 void TerminateWorkerContext() override; | 67 void TerminateWorkerContext() override; |
| 68 void ResumeAfterDownload() override; | 68 void ResumeAfterDownload() override; |
| 69 void AttachDevTools(const WebString& host_id, int session_id) override; | 69 void AttachDevTools(const WebString& host_id, int session_id) override; |
| 70 void ReattachDevTools(const WebString& host_id, | 70 void ReattachDevTools(const WebString& host_id, |
| 71 int session_id, | 71 int session_id, |
| 72 const WebString& saved_state) override; | 72 const WebString& saved_state) override; |
| 73 void DetachDevTools() override; | 73 void DetachDevTools(int session_id) override; |
| 74 void DispatchDevToolsMessage(int session_id, | 74 void DispatchDevToolsMessage(int session_id, |
| 75 int call_id, | 75 int call_id, |
| 76 const WebString& method, | 76 const WebString& method, |
| 77 const WebString& message) override; | 77 const WebString& message) override; |
| 78 void AddMessageToConsole(const WebConsoleMessage&) override; | 78 void AddMessageToConsole(const WebConsoleMessage&) override; |
| 79 | 79 |
| 80 void PostMessageToPageInspector(const WTF::String&); | 80 void PostMessageToPageInspector(const WTF::String&); |
| 81 | 81 |
| 82 private: | 82 private: |
| 83 void PrepareShadowPageForLoader(); | 83 void PrepareShadowPageForLoader(); |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 kDoPauseAfterDownload, | 136 kDoPauseAfterDownload, |
| 137 kIsPausedAfterDownload | 137 kIsPausedAfterDownload |
| 138 } pause_after_download_state_; | 138 } pause_after_download_state_; |
| 139 | 139 |
| 140 WaitingForDebuggerState waiting_for_debugger_state_; | 140 WaitingForDebuggerState waiting_for_debugger_state_; |
| 141 }; | 141 }; |
| 142 | 142 |
| 143 } // namespace blink | 143 } // namespace blink |
| 144 | 144 |
| 145 #endif // WebEmbeddedWorkerImpl_h | 145 #endif // WebEmbeddedWorkerImpl_h |
| OLD | NEW |