| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 WebContentSecurityPolicyType, | 90 WebContentSecurityPolicyType, |
| 91 WebAddressSpace) override; | 91 WebAddressSpace) override; |
| 92 void Connect(std::unique_ptr<WebMessagePortChannel>) override; | 92 void Connect(std::unique_ptr<WebMessagePortChannel>) override; |
| 93 void TerminateWorkerContext() override; | 93 void TerminateWorkerContext() override; |
| 94 | 94 |
| 95 void PauseWorkerContextOnStart() override; | 95 void PauseWorkerContextOnStart() override; |
| 96 void AttachDevTools(const WebString& host_id, int session_id) override; | 96 void AttachDevTools(const WebString& host_id, int session_id) override; |
| 97 void ReattachDevTools(const WebString& host_id, | 97 void ReattachDevTools(const WebString& host_id, |
| 98 int sesion_id, | 98 int sesion_id, |
| 99 const WebString& saved_state) override; | 99 const WebString& saved_state) override; |
| 100 void DetachDevTools() override; | 100 void DetachDevTools(int session_id) override; |
| 101 void DispatchDevToolsMessage(int session_id, | 101 void DispatchDevToolsMessage(int session_id, |
| 102 int call_id, | 102 int call_id, |
| 103 const WebString& method, | 103 const WebString& method, |
| 104 const WebString& message) override; | 104 const WebString& message) override; |
| 105 | 105 |
| 106 // Callback methods for WebSharedWorkerReportingProxyImpl. | 106 // Callback methods for WebSharedWorkerReportingProxyImpl. |
| 107 void CountFeature(UseCounter::Feature); | 107 void CountFeature(UseCounter::Feature); |
| 108 void PostMessageToPageInspector(const String& message); | 108 void PostMessageToPageInspector(const String& message); |
| 109 void DidCloseWorkerGlobalScope(); | 109 void DidCloseWorkerGlobalScope(); |
| 110 void DidTerminateWorkerThread(); | 110 void DidTerminateWorkerThread(); |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 RefPtr<WorkerLoaderProxy> loader_proxy_; | 155 RefPtr<WorkerLoaderProxy> loader_proxy_; |
| 156 | 156 |
| 157 WebURL url_; | 157 WebURL url_; |
| 158 WebString name_; | 158 WebString name_; |
| 159 WebAddressSpace creation_address_space_; | 159 WebAddressSpace creation_address_space_; |
| 160 }; | 160 }; |
| 161 | 161 |
| 162 } // namespace blink | 162 } // namespace blink |
| 163 | 163 |
| 164 #endif // WebSharedWorkerImpl_h | 164 #endif // WebSharedWorkerImpl_h |
| OLD | NEW |