OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // This comment is for the dictionaries namespace. |
5 namespace dictionaries { | 6 namespace dictionaries { |
6 // Documentation for ComplexType. | 7 // Documentation for ComplexType. |
7 dictionary InnerType { | 8 dictionary InnerType { |
8 // Documentation for the String s. | 9 // Documentation for the String s. |
9 DOMString s; | 10 DOMString s; |
10 | 11 |
11 // Documentation for the boolean b. | 12 // Documentation for the boolean b. |
12 int b; | 13 int b; |
13 | 14 |
14 // Documentation for the int i. | 15 // Documentation for the int i. |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 }; | 52 }; |
52 | 53 |
53 dictionary ComplexType { | 54 dictionary ComplexType { |
54 // Documentation for the int i. | 55 // Documentation for the int i. |
55 int i; | 56 int i; |
56 | 57 |
57 // Documentation for the ComplexType c. | 58 // Documentation for the ComplexType c. |
58 ComplexType c; | 59 ComplexType c; |
59 }; | 60 }; |
60 }; | 61 }; |
OLD | NEW |