OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // This defines an enumeration of IDs that can uniquely identify a view within | 5 // This defines an enumeration of IDs that can uniquely identify a view within |
6 // the scope of a container view. | 6 // the scope of a container view. |
7 | 7 |
8 #ifndef CHROME_BROWSER_UI_VIEW_IDS_H_ | 8 #ifndef CHROME_BROWSER_UI_VIEW_IDS_H_ |
9 #define CHROME_BROWSER_UI_VIEW_IDS_H_ | 9 #define CHROME_BROWSER_UI_VIEW_IDS_H_ |
10 | 10 |
(...skipping 28 matching lines...) Expand all Loading... |
39 VIEW_ID_RELOAD_BUTTON, | 39 VIEW_ID_RELOAD_BUTTON, |
40 VIEW_ID_HOME_BUTTON, | 40 VIEW_ID_HOME_BUTTON, |
41 VIEW_ID_STAR_BUTTON, | 41 VIEW_ID_STAR_BUTTON, |
42 VIEW_ID_LOCATION_BAR, | 42 VIEW_ID_LOCATION_BAR, |
43 VIEW_ID_APP_MENU, | 43 VIEW_ID_APP_MENU, |
44 VIEW_ID_AUTOCOMPLETE, | 44 VIEW_ID_AUTOCOMPLETE, |
45 VIEW_ID_BROWSER_ACTION_TOOLBAR, | 45 VIEW_ID_BROWSER_ACTION_TOOLBAR, |
46 VIEW_ID_FEEDBACK_BUTTON, | 46 VIEW_ID_FEEDBACK_BUTTON, |
47 VIEW_ID_OMNIBOX, | 47 VIEW_ID_OMNIBOX, |
48 VIEW_ID_CHROME_TO_MOBILE_BUTTON, | 48 VIEW_ID_CHROME_TO_MOBILE_BUTTON, |
49 VIEW_ID_METRO_PIN, | |
50 | 49 |
51 // The Bookmark Bar. | 50 // The Bookmark Bar. |
52 VIEW_ID_BOOKMARK_BAR, | 51 VIEW_ID_BOOKMARK_BAR, |
53 VIEW_ID_OTHER_BOOKMARKS, | 52 VIEW_ID_OTHER_BOOKMARKS, |
54 // Used for bookmarks/folders on the bookmark bar. | 53 // Used for bookmarks/folders on the bookmark bar. |
55 VIEW_ID_BOOKMARK_BAR_ELEMENT, | 54 VIEW_ID_BOOKMARK_BAR_ELEMENT, |
56 | 55 |
57 // Find in page. | 56 // Find in page. |
58 VIEW_ID_FIND_IN_PAGE_TEXT_FIELD, | 57 VIEW_ID_FIND_IN_PAGE_TEXT_FIELD, |
59 VIEW_ID_FIND_IN_PAGE, | 58 VIEW_ID_FIND_IN_PAGE, |
(...skipping 16 matching lines...) Expand all Loading... |
76 // Used in chrome/browser/ui/gtk/view_id_util_browsertests.cc | 75 // Used in chrome/browser/ui/gtk/view_id_util_browsertests.cc |
77 // If you add new ids, make sure the above test passes. | 76 // If you add new ids, make sure the above test passes. |
78 VIEW_ID_PREDEFINED_COUNT, | 77 VIEW_ID_PREDEFINED_COUNT, |
79 | 78 |
80 // Plus button on location bar. | 79 // Plus button on location bar. |
81 VIEW_ID_ACTION_BOX_BUTTON | 80 VIEW_ID_ACTION_BOX_BUTTON |
82 }; | 81 }; |
83 | 82 |
84 #endif // CHROME_BROWSER_UI_VIEW_IDS_H_ | 83 #endif // CHROME_BROWSER_UI_VIEW_IDS_H_ |
85 | 84 |
OLD | NEW |