| Index: tools/json_schema_compiler/test/objects_movable.idl
|
| diff --git a/tools/json_schema_compiler/test/objects_movable.idl b/tools/json_schema_compiler/test/objects_movable.idl
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b09f1a8206d45147b5cbd0cac7545c69e6b10368
|
| --- /dev/null
|
| +++ b/tools/json_schema_compiler/test/objects_movable.idl
|
| @@ -0,0 +1,23 @@
|
| +// Copyright 2016 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.
|
| +
|
| +// Movable Objects.
|
| +[use_movable_types=true] namespace objectsMovable {
|
| + enum Foo {
|
| + BAR,
|
| + BAZ
|
| + };
|
| +
|
| + dictionary MovablePod {
|
| + Foo foo;
|
| + DOMString str;
|
| + long num;
|
| + boolean b;
|
| + };
|
| +
|
| + dictionary MovableParent {
|
| + MovablePod[] pods;
|
| + DOMString[] strs;
|
| + };
|
| +};
|
|
|