| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 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 // Movable Objects. | 5 // Movable Objects. |
| 6 [use_movable_types=true] namespace objectsMovable { | 6 [use_movable_types=true] namespace objectsMovable { |
| 7 enum Foo { | 7 enum Foo { |
| 8 BAR, | 8 BAR, |
| 9 BAZ | 9 BAZ |
| 10 }; | 10 }; |
| 11 | 11 |
| 12 dictionary MovablePod { | 12 dictionary MovablePod { |
| 13 Foo foo; | 13 Foo foo; |
| 14 DOMString str; | 14 DOMString str; |
| 15 long num; | 15 long num; |
| 16 boolean b; | 16 boolean b; |
| 17 }; | 17 }; |
| 18 | 18 |
| 19 dictionary MovableParent { | 19 dictionary MovableParent { |
| 20 MovablePod[] pods; | 20 MovablePod[] pods; |
| 21 DOMString[] strs; | 21 DOMString[] strs; |
| 22 [instanceOf=Blob]object blob; |
| 22 }; | 23 }; |
| 23 }; | 24 }; |
| OLD | NEW |