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

Side by Side Diff: content/common/service_worker/embedded_worker_start_params.h

Issue 2381513002: Revert of ServiceWorker: Implement StartWorker by using mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "content/common/content_export.h"
6 #include "content/common/service_worker/embedded_worker_settings.h"
7 #include "url/gurl.h"
8
9 #ifndef CONTENT_COMMON_SERVICE_WORKER_EMBEDDED_WORKER_START_PARAMS_H_
10 #define CONTENT_COMMON_SERVICE_WORKER_EMBEDDED_WORKER_START_PARAMS_H_
11
12 namespace content {
13
14 struct CONTENT_EXPORT EmbeddedWorkerStartParams {
15 EmbeddedWorkerStartParams();
16
17 int embedded_worker_id;
18 int64_t service_worker_version_id;
19 GURL scope;
20 GURL script_url;
21 int worker_devtools_agent_route_id;
22 bool pause_after_download;
23 bool wait_for_debugger;
24 bool is_installed;
25 EmbeddedWorkerSettings settings;
26 };
27
28 } // namespace content
29
30 #endif // CONTENT_COMMON_SERVICE_WORKER_EMBEDDED_WORKER_START_PARAMS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698