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

Unified Diff: third_party/WebKit/public/web/WebEmbeddedWorker.h

Issue 1675613002: service worker: use 200 OK for update requests even in the no update case (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/public/web/WebEmbeddedWorker.h
diff --git a/third_party/WebKit/public/web/WebEmbeddedWorker.h b/third_party/WebKit/public/web/WebEmbeddedWorker.h
index 027e030dd9e7fd96c347688cd275413048c91eca..ec0092c3ba92b71d957f58df2a310a58e70fc7dc 100644
--- a/third_party/WebKit/public/web/WebEmbeddedWorker.h
+++ b/third_party/WebKit/public/web/WebEmbeddedWorker.h
@@ -58,6 +58,10 @@ public:
virtual void startWorkerContext(const WebEmbeddedWorkerStartData&) = 0;
virtual void terminateWorkerContext() = 0;
+ // Resumes starting a worker startup that was paused via
+ // WebEmbeddedWorkerStartData.pauseAfterDownloadMode.
+ virtual void resumeAfterDownload() = 0;
+
// Inspector related methods.
virtual void attachDevTools(const WebString& hostId, int sessionId) = 0;
virtual void reattachDevTools(const WebString& hostId, int sessionId, const WebString& savedState) = 0;

Powered by Google App Engine
This is Rietveld 408576698