OLD | NEW |
(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 }; |
OLD | NEW |