OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef MOCK_ENUM_H | 5 #ifndef MOCK_ENUM_H |
6 #define MOCK_ENUM_H | 6 #define MOCK_ENUM_H |
7 | 7 |
8 // Here is our mock enum. Beyond testing it is completely meaningless. | 8 // Here is our mock enum. Beyond testing it is completely meaningless. |
9 // MockEnum follows strict rules for valid modifications: | 9 // MockEnum follows strict rules for valid modifications: |
10 // 1. NO reordering of entries | 10 // 1. NO reordering of entries |
11 // 2. NO deletions of entries | 11 // 2. NO deletions of entries |
12 // 3. New entries must be added just before mBoundary, never after | 12 // 3. New entries must be added just before mBoundary, never after |
13 // | 13 // |
14 mBoundary // Do not add below here | |
15 enum MockEnum { | 14 enum MockEnum { |
16 mEntry1, | 15 DEPRECATED_UMA_HISTOGRAM_ID_Entry1, |
17 mEntry2, | 16 DEPRECATED_UMA_HISTOGRAM_ID_Entry2, |
18 mData1, | 17 UMA_HISTOGRAM_ID_Data1, |
19 mData2, | 18 UMA_HISTOGRAM_ID_Data2, |
20 mEntry3, | 19 UMA_HISTOGRAM_ID_Entry3, |
21 mInfo1, | 20 UMA_HISTOGRAM_ID_Info1, |
22 mData3, | 21 UMA_HISTOGRAM_ID_Data3, |
23 mError1, | 22 DEPRECATED_UMA_HISTOGRAM_ID_Error1, |
24 mFunction1, | 23 UMA_HISTOGRAM_ID_Function1, |
25 mInfo2, | 24 UMA_HISTOGRAM_ID_Info2, |
26 mData4, | 25 UMA_HISTOGRAM_ID_Data4, |
27 }; | 26 }; |
28 | 27 |
29 #endif | 28 #endif |
OLD | NEW |