Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(235)

Side by Side Diff: tools/json_schema_compiler/test/objects_movable.idl

Issue 1829753003: [Extensions] Update generated code to support movable additional properties (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Antony's Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698