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

Unified Diff: public/web/WebEmbeddedWorkerStartData.h

Issue 686353003: ServiceWorker: Remove unused startMode field from WebEmbeddedWorkerStartData [2/2] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebEmbeddedWorkerStartData.h
diff --git a/public/web/WebEmbeddedWorkerStartData.h b/public/web/WebEmbeddedWorkerStartData.h
index 540ccdfc8d7a3c3e1a13d34ddb5bf92ed21aa494..a110876451f94b160b27581f10d8fd651ca85a07 100644
--- a/public/web/WebEmbeddedWorkerStartData.h
+++ b/public/web/WebEmbeddedWorkerStartData.h
@@ -37,12 +37,6 @@
namespace blink {
-// FIXME: delete after waitForDebugger is in use in both chrome and blink.
-enum WebEmbeddedWorkerStartMode {
- WebEmbeddedWorkerStartModeDontPauseOnStart,
- WebEmbeddedWorkerStartModePauseOnStart
-};
-
struct WebEmbeddedWorkerStartData {
enum PauseAfterDownloadMode {
DontPauseAfterDownload,
@@ -55,13 +49,11 @@ struct WebEmbeddedWorkerStartData {
WebURL scriptURL;
WebString userAgent;
- WebEmbeddedWorkerStartMode startMode; // FIXME: ditto delete
PauseAfterDownloadMode pauseAfterDownloadMode;
WaitForDebuggerMode waitForDebuggerMode;
WebEmbeddedWorkerStartData()
- : startMode(WebEmbeddedWorkerStartModeDontPauseOnStart)
- , pauseAfterDownloadMode(DontPauseAfterDownload)
+ : pauseAfterDownloadMode(DontPauseAfterDownload)
, waitForDebuggerMode(DontWaitForDebugger) { }
};
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698