| 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 26 matching lines...) Expand all Loading... |
| 37 namespace WebCore { | 37 namespace WebCore { |
| 38 class ScriptExecutionContext; | 38 class ScriptExecutionContext; |
| 39 } | 39 } |
| 40 | 40 |
| 41 namespace blink { | 41 namespace blink { |
| 42 | 42 |
| 43 class WebString; | 43 class WebString; |
| 44 class WebMessagePortChannel; | 44 class WebMessagePortChannel; |
| 45 class WebSharedWorkerClient; | 45 class WebSharedWorkerClient; |
| 46 class WebURL; | 46 class WebURL; |
| 47 class WebWorkerSettings; |
| 47 | 48 |
| 48 // This is the interface to a SharedWorker thread. | 49 // This is the interface to a SharedWorker thread. |
| 49 class WebSharedWorker { | 50 class WebSharedWorker { |
| 50 public: | 51 public: |
| 51 // Invoked from the worker thread to instantiate a WebSharedWorker that inte
racts with the WebKit worker components. | 52 // Invoked from the worker thread to instantiate a WebSharedWorker that inte
racts with the WebKit worker components. |
| 52 BLINK_EXPORT static WebSharedWorker* create(WebSharedWorkerClient*); | 53 BLINK_EXPORT static WebSharedWorker* create(WebSharedWorkerClient*); |
| 53 | 54 |
| 54 virtual void startWorkerContext( | 55 virtual void startWorkerContext( |
| 55 const WebURL& scriptURL, | 56 const WebURL& scriptURL, |
| 56 const WebString& name, | 57 const WebString& name, |
| 57 const WebString& contentSecurityPolicy, | 58 const WebString& contentSecurityPolicy, |
| 58 WebContentSecurityPolicyType) = 0; | 59 WebContentSecurityPolicyType) = 0; |
| 59 | 60 |
| 60 // Sends a connect event to the SharedWorker context. | 61 // Sends a connect event to the SharedWorker context. |
| 61 virtual void connect(WebMessagePortChannel*) = 0; | 62 virtual void connect(WebMessagePortChannel*) = 0; |
| 62 | 63 |
| 63 // Invoked to shutdown the worker when there are no more associated document
s. | 64 // Invoked to shutdown the worker when there are no more associated document
s. |
| 64 virtual void terminateWorkerContext() = 0; | 65 virtual void terminateWorkerContext() = 0; |
| 65 | 66 |
| 66 // Notification when the WebCommonWorkerClient is destroyed. | 67 // Notification when the WebCommonWorkerClient is destroyed. |
| 67 virtual void clientDestroyed() = 0; | 68 virtual void clientDestroyed() = 0; |
| 68 | 69 |
| 69 virtual void pauseWorkerContextOnStart() = 0; | 70 virtual void pauseWorkerContextOnStart() = 0; |
| 70 virtual void resumeWorkerContext() = 0; | 71 virtual void resumeWorkerContext() = 0; |
| 71 virtual void attachDevTools() = 0; | 72 virtual void attachDevTools() = 0; |
| 72 virtual void reattachDevTools(const WebString& savedState) = 0; | 73 virtual void reattachDevTools(const WebString& savedState) = 0; |
| 73 virtual void detachDevTools() = 0; | 74 virtual void detachDevTools() = 0; |
| 74 virtual void dispatchDevToolsMessage(const WebString&) = 0; | 75 virtual void dispatchDevToolsMessage(const WebString&) = 0; |
| 76 |
| 77 virtual WebWorkerSettings* settings() = 0; |
| 75 }; | 78 }; |
| 76 | 79 |
| 77 } // namespace blink | 80 } // namespace blink |
| 78 | 81 |
| 79 #endif | 82 #endif |
| OLD | NEW |