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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 class WebSharedWorkerImpl final : public WebFrameClient, | 66 class WebSharedWorkerImpl final : public WebFrameClient, |
67 public WebSharedWorker, | 67 public WebSharedWorker, |
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 didFinishDocumentLoad(WebLocalFrame*) override; | 76 void didFinishDocumentLoad() override; |
77 | 77 |
78 // WebDevToolsAgentClient overrides. | 78 // WebDevToolsAgentClient overrides. |
79 void sendProtocolMessage(int sessionId, | 79 void sendProtocolMessage(int sessionId, |
80 int callId, | 80 int callId, |
81 const WebString&, | 81 const WebString&, |
82 const WebString&) override; | 82 const WebString&) override; |
83 void resumeStartup() override; | 83 void resumeStartup() override; |
84 WebDevToolsAgentClient::WebKitClientMessageLoop* createClientMessageLoop() | 84 WebDevToolsAgentClient::WebKitClientMessageLoop* createClientMessageLoop() |
85 override; | 85 override; |
86 | 86 |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 RefPtr<WorkerLoaderProxy> m_loaderProxy; | 165 RefPtr<WorkerLoaderProxy> m_loaderProxy; |
166 | 166 |
167 WebURL m_url; | 167 WebURL m_url; |
168 WebString m_name; | 168 WebString m_name; |
169 WebAddressSpace m_creationAddressSpace; | 169 WebAddressSpace m_creationAddressSpace; |
170 }; | 170 }; |
171 | 171 |
172 } // namespace blink | 172 } // namespace blink |
173 | 173 |
174 #endif // WebSharedWorkerImpl_h | 174 #endif // WebSharedWorkerImpl_h |
OLD | NEW |