| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 void PauseWorkerContextOnStart() override; | 96 void PauseWorkerContextOnStart() override; |
| 97 void AttachDevTools(const WebString& host_id, int session_id) override; | 97 void AttachDevTools(const WebString& host_id, int session_id) override; |
| 98 void ReattachDevTools(const WebString& host_id, | 98 void ReattachDevTools(const WebString& host_id, |
| 99 int sesion_id, | 99 int sesion_id, |
| 100 const WebString& saved_state) override; | 100 const WebString& saved_state) override; |
| 101 void DetachDevTools() override; | 101 void DetachDevTools() override; |
| 102 void DispatchDevToolsMessage(int session_id, | 102 void DispatchDevToolsMessage(int session_id, |
| 103 int call_id, | 103 int call_id, |
| 104 const WebString& method, | 104 const WebString& method, |
| 105 const WebString& message) override; | 105 const WebString& message) override; |
| 106 WebServiceWorkerNetworkProvider* GetServiceWorkerNetworkProvider() override; |
| 106 | 107 |
| 107 // Callback methods for WebSharedWorkerReportingProxyImpl. | 108 // Callback methods for WebSharedWorkerReportingProxyImpl. |
| 108 void CountFeature(UseCounter::Feature); | 109 void CountFeature(UseCounter::Feature); |
| 109 void PostMessageToPageInspector(const String& message); | 110 void PostMessageToPageInspector(const String& message); |
| 110 void DidCloseWorkerGlobalScope(); | 111 void DidCloseWorkerGlobalScope(); |
| 111 void DidTerminateWorkerThread(); | 112 void DidTerminateWorkerThread(); |
| 112 | 113 |
| 113 private: | 114 private: |
| 114 ~WebSharedWorkerImpl() override; | 115 ~WebSharedWorkerImpl() override; |
| 115 | 116 |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 RefPtr<WorkerLoaderProxy> loader_proxy_; | 166 RefPtr<WorkerLoaderProxy> loader_proxy_; |
| 166 | 167 |
| 167 WebURL url_; | 168 WebURL url_; |
| 168 WebString name_; | 169 WebString name_; |
| 169 WebAddressSpace creation_address_space_; | 170 WebAddressSpace creation_address_space_; |
| 170 }; | 171 }; |
| 171 | 172 |
| 172 } // namespace blink | 173 } // namespace blink |
| 173 | 174 |
| 174 #endif // WebSharedWorkerImpl_h | 175 #endif // WebSharedWorkerImpl_h |
| OLD | NEW |