| OLD | NEW |
| (Empty) | |
| 1 |
| 2 #ifndef WebIsolatedWorker_h |
| 3 #define WebIsolatedWorker_h |
| 4 |
| 5 #include "public/platform/WebCommon.h" |
| 6 #include "public/platform/WebURL.h" |
| 7 |
| 8 namespace blink { |
| 9 class WebIsolatedWorkerContextClient; |
| 10 |
| 11 class WebIsolatedWorker { |
| 12 public: |
| 13 BLINK_EXPORT static WebIsolatedWorker* create( |
| 14 WebIsolatedWorkerContextClient*); |
| 15 |
| 16 virtual ~WebIsolatedWorker() {} |
| 17 virtual void startWorker(int64_t versionID, WebURL scopeURL, WebURL scriptUR
L) {} |
| 18 }; |
| 19 |
| 20 } // namespace blink |
| 21 |
| 22 #endif // WebIsolatedWorker_h |
| OLD | NEW |