Index: components/autofill/core/browser/popup_item_ids.h |
diff --git a/components/autofill/core/browser/popup_item_ids.h b/components/autofill/core/browser/popup_item_ids.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d5ae3180bdfd4917117165d3fb4b868a3abce3b9 |
--- /dev/null |
+++ b/components/autofill/core/browser/popup_item_ids.h |
@@ -0,0 +1,24 @@ |
+// 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. |
+ |
+// 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.
|
+ |
+#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.
|
+#define COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_ENUMS_H_ |
+ |
+namespace autofill { |
+ |
+enum PopupItemId { |
+ POPUP_ITEM_ID_AUTOCOMPLETE_ENTRY = 0, |
+ POPUP_ITEM_ID_WARNING_MESSAGE = -1, |
+ POPUP_ITEM_ID_PASSWORD_ENTRY = -2, |
+ POPUP_ITEM_ID_SEPARATOR = -3, |
+ POPUP_ITEM_ID_CLEAR_FORM = -4, |
+ POPUP_ITEM_ID_AUTOFILL_OPTIONS = -5, |
+ POPUP_ITEM_ID_DATALIST_ENTRY = -6 |
+}; |
+ |
+} // namespace autofill |
+ |
+#endif // COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_ENUMS_H_ |