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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 VIEW_ID_BROWSER_ACTION, | 58 VIEW_ID_BROWSER_ACTION, |
59 VIEW_ID_FEEDBACK_BUTTON, | 59 VIEW_ID_FEEDBACK_BUTTON, |
60 VIEW_ID_OMNIBOX, | 60 VIEW_ID_OMNIBOX, |
61 VIEW_ID_SCRIPT_BUBBLE, | 61 VIEW_ID_SCRIPT_BUBBLE, |
62 VIEW_ID_TRANSLATE_BUTTON, | 62 VIEW_ID_TRANSLATE_BUTTON, |
63 | 63 |
64 // The Bookmark Bar. | 64 // The Bookmark Bar. |
65 VIEW_ID_BOOKMARK_BAR, | 65 VIEW_ID_BOOKMARK_BAR, |
66 VIEW_ID_OTHER_BOOKMARKS, | 66 VIEW_ID_OTHER_BOOKMARKS, |
67 VIEW_ID_MANAGED_BOOKMARKS, | 67 VIEW_ID_MANAGED_BOOKMARKS, |
| 68 VIEW_ID_SUPERVISED_BOOKMARKS, |
68 // Used for bookmarks/folders on the bookmark bar. | 69 // Used for bookmarks/folders on the bookmark bar. |
69 VIEW_ID_BOOKMARK_BAR_ELEMENT, | 70 VIEW_ID_BOOKMARK_BAR_ELEMENT, |
70 | 71 |
71 // Find in page. | 72 // Find in page. |
72 VIEW_ID_FIND_IN_PAGE_TEXT_FIELD, | 73 VIEW_ID_FIND_IN_PAGE_TEXT_FIELD, |
73 | 74 |
74 // Tab Container window. | 75 // Tab Container window. |
75 VIEW_ID_TAB_CONTAINER, | 76 VIEW_ID_TAB_CONTAINER, |
76 | 77 |
77 // Docked dev tools. | 78 // Docked dev tools. |
(...skipping 13 matching lines...) Expand all Loading... |
91 | 92 |
92 // Used in chrome/browser/ui/cocoa/view_id_util_browsertest.mm. | 93 // Used in chrome/browser/ui/cocoa/view_id_util_browsertest.mm. |
93 // If you add new ids, make sure the above test passes. | 94 // If you add new ids, make sure the above test passes. |
94 VIEW_ID_PREDEFINED_COUNT, | 95 VIEW_ID_PREDEFINED_COUNT, |
95 | 96 |
96 // Plus button on location bar. | 97 // Plus button on location bar. |
97 VIEW_ID_ACTION_BOX_BUTTON, | 98 VIEW_ID_ACTION_BOX_BUTTON, |
98 }; | 99 }; |
99 | 100 |
100 #endif // CHROME_BROWSER_UI_VIEW_IDS_H_ | 101 #endif // CHROME_BROWSER_UI_VIEW_IDS_H_ |
OLD | NEW |