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 3 // found in the LICENSE file. 4 5 // A comment for the enums namespace. 6 namespace enums { 7 // A basic enumeration. 8 enum Enum1 { a, b }; 9 10 // Another basic enumeration. 11 enum Enum2 { ab, bc, de, ef, fg, hi }; 12 }; 13