OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 // A comment for the enums namespace. |
5 namespace enums { | 6 namespace enums { |
6 // A basic enumeration. | 7 // A basic enumeration. |
7 enum Enum1 { a, b }; | 8 enum Enum1 { a, b }; |
8 | 9 |
9 // Another basic enumeration. | 10 // Another basic enumeration. |
10 enum Enum2 { ab, bc, de, ef, fg, hi }; | 11 enum Enum2 { ab, bc, de, ef, fg, hi }; |
11 }; | 12 }; |
OLD | NEW |