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

Unified Diff: content/common/service_worker/embedded_worker_start_params.h

Issue 2374353002: Revert "Revert of ServiceWorker: Implement StartWorker by using mojo (patchset #1 id:1 of https://c… (Closed)
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: content/common/service_worker/embedded_worker_start_params.h
diff --git a/content/common/service_worker/embedded_worker_start_params.h b/content/common/service_worker/embedded_worker_start_params.h
new file mode 100644
index 0000000000000000000000000000000000000000..9e2ef2a5b9a222a7dc2ab5d16ac7199bbfc71ad3
--- /dev/null
+++ b/content/common/service_worker/embedded_worker_start_params.h
@@ -0,0 +1,30 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "content/common/content_export.h"
+#include "content/common/service_worker/embedded_worker_settings.h"
+#include "url/gurl.h"
+
+#ifndef CONTENT_COMMON_SERVICE_WORKER_EMBEDDED_WORKER_START_PARAMS_H_
+#define CONTENT_COMMON_SERVICE_WORKER_EMBEDDED_WORKER_START_PARAMS_H_
+
+namespace content {
+
+struct CONTENT_EXPORT EmbeddedWorkerStartParams {
+ EmbeddedWorkerStartParams();
+
+ int embedded_worker_id;
+ int64_t service_worker_version_id;
+ GURL scope;
+ GURL script_url;
+ int worker_devtools_agent_route_id;
+ bool pause_after_download;
+ bool wait_for_debugger;
+ bool is_installed;
+ EmbeddedWorkerSettings settings;
+};
+
+} // namespace content
+
+#endif // CONTENT_COMMON_SERVICE_WORKER_EMBEDDED_WORKER_START_PARAMS_H_

Powered by Google App Engine
This is Rietveld 408576698