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

Side by Side Diff: content/common/service_worker/embedded_worker.mojom

Issue 1223193009: WIP attempt to replace StartWorker/StopWorker IPCs with a new mojo EmbeddedWorker service. Base URL: https://chromium.googlesource.com/chromium/src.git@mojo-event-dispatching-option2
Patch Set: Created 5 years, 5 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
« no previous file with comments | « content/common/BUILD.gn ('k') | content/common/service_worker/embedded_worker_messages.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 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 module content;
6
7 struct EmbeddedWorkerStartWorkerParams {
8 int32 embedded_worker_id;
9 int64 service_worker_version_id;
10 string scope;
11 string script_url;
12 int32 worker_devtools_agent_route_id;
13 bool pause_after_download;
14 bool wait_for_debugger;
15 int32 v8_cache_options; // content::V8CacheOptions
16 };
17
18 interface EmbeddedWorker {
19 Initialize(EmbeddedWorkerStartWorkerParams params);
20 };
OLDNEW
« no previous file with comments | « content/common/BUILD.gn ('k') | content/common/service_worker/embedded_worker_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698