| // Copyright 2014 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. |
| // We warn when xxxLAST constants aren't last. |
| kBadOneLast = kBadOneGreen |
| // We warn when xxx_LAST constants aren't last. |
| BAD_TWO_BLUE = 0xfffffffc, |
| BAD_TWO_LAST = BAD_TWO_GREEN |
| // We don't warn when xxxLAST constants are last. |
| kGoodOneLast = kGoodOneBlue |
| // We don't warn when xxx_LAST constants are last. |
| GOOD_TWO_BLUE = 0xfffffffc, |
| GOOD_TWO_LAST = GOOD_TWO_BLUE |