Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(325)

Unified Diff: components/autofill/core/browser/popup_item_ids.h

Issue 159853003: Moving the autofill enum from blink side to browser side (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/autofill/core/browser/autofill_manager_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..628e00033a5a16a3c86a4c79c2266bc338c182a4
--- /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.
+
+// This enum defines item identifiers for Autofill popup controller.
+
+#ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_POPUP_ITEM_ID_H_
+#define COMPONENTS_AUTOFILL_CORE_BROWSER_POPUP_ITEM_ID_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_BROWSER_POPUP_ITEM_ID_H_
« no previous file with comments | « components/autofill/core/browser/autofill_manager_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698