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

Side by Side Diff: components/autofill/core/common/autofill_enums.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: incorporated review comments 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 unified diff | Download patch
OLDNEW
(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.
6
7 #ifndef COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_ENUMS_H_
8 #define COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_ENUMS_H_
9
10 namespace autofill {
11
12 enum PopUpItemId {
Ilya Sherman 2014/02/13 22:30:03 nit: "PopUp" -> "Popup"
gnana 2014/02/14 09:02:06 Done.
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_SEPERATOR = -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_
Ilya Sherman 2014/02/13 22:30:03 IMO, Colin's suggestion of moving this enum to aut
gnana 2014/02/14 09:02:06 Done.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698