Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(104)

Side by Side Diff: third_party/WebKit/public/web/modules/serviceworker/WebIsolatedWorker.h

Issue 2118243002: [proof-of-concept] SW thread independent of the main thread Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698