| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 public WebDevToolsAgentClient, | 68 public WebDevToolsAgentClient, |
| 69 private WorkerLoaderProxyProvider { | 69 private WorkerLoaderProxyProvider { |
| 70 public: | 70 public: |
| 71 explicit WebSharedWorkerImpl(WebSharedWorkerClient*); | 71 explicit WebSharedWorkerImpl(WebSharedWorkerClient*); |
| 72 | 72 |
| 73 // WebFrameClient methods to support resource loading thru the 'shadow page'. | 73 // WebFrameClient methods to support resource loading thru the 'shadow page'. |
| 74 WebApplicationCacheHost* createApplicationCacheHost( | 74 WebApplicationCacheHost* createApplicationCacheHost( |
| 75 WebApplicationCacheHostClient*) override; | 75 WebApplicationCacheHostClient*) override; |
| 76 void willSendRequest(WebLocalFrame*, WebURLRequest&) override; | 76 void willSendRequest(WebLocalFrame*, WebURLRequest&) override; |
| 77 void didFinishDocumentLoad(WebLocalFrame*) override; | 77 void didFinishDocumentLoad(WebLocalFrame*) override; |
| 78 bool isControlledByServiceWorker(WebDataSource&) override; | |
| 79 int64_t serviceWorkerID(WebDataSource&) override; | |
| 80 | 78 |
| 81 // WebDevToolsAgentClient overrides. | 79 // WebDevToolsAgentClient overrides. |
| 82 void sendProtocolMessage(int sessionId, | 80 void sendProtocolMessage(int sessionId, |
| 83 int callId, | 81 int callId, |
| 84 const WebString&, | 82 const WebString&, |
| 85 const WebString&) override; | 83 const WebString&) override; |
| 86 void resumeStartup() override; | 84 void resumeStartup() override; |
| 87 WebDevToolsAgentClient::WebKitClientMessageLoop* createClientMessageLoop() | 85 WebDevToolsAgentClient::WebKitClientMessageLoop* createClientMessageLoop() |
| 88 override; | 86 override; |
| 89 | 87 |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 RefPtr<WorkerLoaderProxy> m_loaderProxy; | 166 RefPtr<WorkerLoaderProxy> m_loaderProxy; |
| 169 | 167 |
| 170 WebURL m_url; | 168 WebURL m_url; |
| 171 WebString m_name; | 169 WebString m_name; |
| 172 WebAddressSpace m_creationAddressSpace; | 170 WebAddressSpace m_creationAddressSpace; |
| 173 }; | 171 }; |
| 174 | 172 |
| 175 } // namespace blink | 173 } // namespace blink |
| 176 | 174 |
| 177 #endif // WebSharedWorkerImpl_h | 175 #endif // WebSharedWorkerImpl_h |
| OLD | NEW |