Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // Contains enum specific to the Autofill component. | |
|
blundell
2014/02/14 16:01:11
This comment should change to be about what this e
gnana
2014/02/14 17:08:46
Done.
| |
| 6 | |
| 7 #ifndef COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_ENUMS_H_ | |
|
blundell
2014/02/14 16:01:11
This should change.
gnana
2014/02/14 17:08:46
Done.
| |
| 8 #define COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_ENUMS_H_ | |
| 9 | |
| 10 namespace autofill { | |
| 11 | |
| 12 enum PopupItemId { | |
| 13 POPUP_ITEM_ID_AUTOCOMPLETE_ENTRY = 0, | |
| 14 POPUP_ITEM_ID_WARNING_MESSAGE = -1, | |
| 15 POPUP_ITEM_ID_PASSWORD_ENTRY = -2, | |
| 16 POPUP_ITEM_ID_SEPARATOR = -3, | |
| 17 POPUP_ITEM_ID_CLEAR_FORM = -4, | |
| 18 POPUP_ITEM_ID_AUTOFILL_OPTIONS = -5, | |
| 19 POPUP_ITEM_ID_DATALIST_ENTRY = -6 | |
| 20 }; | |
| 21 | |
| 22 } // namespace autofill | |
| 23 | |
| 24 #endif // COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_ENUMS_H_ | |
| OLD | NEW |