| Index: Source/modules/serviceworkers/FetchEventInit.idl | 
| diff --git a/Source/modules/serviceworkers/FetchEventInit.idl b/Source/modules/serviceworkers/FetchEventInit.idl | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..cac8bbeb2127921db6d946ecfe06ff60683b395c | 
| --- /dev/null | 
| +++ b/Source/modules/serviceworkers/FetchEventInit.idl | 
| @@ -0,0 +1,10 @@ | 
| +// Copyright 2015 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. | 
| + | 
| +// https://slightlyoff.github.io/ServiceWorker/spec/service_worker/index.html#fetch-event-interface | 
| + | 
| +dictionary FetchEventInit : ExtendableEventInit { | 
| +  Request request; | 
| +  boolean isReload = false; | 
| +}; | 
|  |