| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 [ | 5 [ |
| 6 ConstructorCallWith=ExecutionContext, | 6 ConstructorCallWith=ExecutionContext, |
| 7 Constructor(Application application, Document document, DOMString url), | 7 Constructor(Application application, Document document, DOMString url), |
| 8 ] interface Module : AbstractModule { | 8 ] interface Module : AbstractModule { |
| 9 readonly attribute Application application; | 9 readonly attribute Application application; |
| 10 attribute any exports; | 10 [CallWith=ScriptState] attribute any exports; |
| 11 }; | 11 }; |
| OLD | NEW |