| 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 21 matching lines...) Expand all Loading... |
| 32 | 32 |
| 33 VIEW_ID_TAB_STRIP, | 33 VIEW_ID_TAB_STRIP, |
| 34 | 34 |
| 35 // Toolbar & toolbar elements. | 35 // Toolbar & toolbar elements. |
| 36 VIEW_ID_TOOLBAR = 1000, | 36 VIEW_ID_TOOLBAR = 1000, |
| 37 VIEW_ID_BACK_BUTTON, | 37 VIEW_ID_BACK_BUTTON, |
| 38 VIEW_ID_FORWARD_BUTTON, | 38 VIEW_ID_FORWARD_BUTTON, |
| 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, | |
| 43 VIEW_ID_APP_MENU, | 42 VIEW_ID_APP_MENU, |
| 44 VIEW_ID_BROWSER_ACTION_TOOLBAR, | 43 VIEW_ID_BROWSER_ACTION_TOOLBAR, |
| 45 VIEW_ID_FEEDBACK_BUTTON, | 44 VIEW_ID_FEEDBACK_BUTTON, |
| 46 VIEW_ID_OMNIBOX, | 45 VIEW_ID_OMNIBOX, |
| 47 VIEW_ID_SCRIPT_BUBBLE, | 46 VIEW_ID_SCRIPT_BUBBLE, |
| 48 | 47 |
| 49 // The Bookmark Bar. | 48 // The Bookmark Bar. |
| 50 VIEW_ID_BOOKMARK_BAR, | 49 VIEW_ID_BOOKMARK_BAR, |
| 51 VIEW_ID_OTHER_BOOKMARKS, | 50 VIEW_ID_OTHER_BOOKMARKS, |
| 52 // Used for bookmarks/folders on the bookmark bar. | 51 // Used for bookmarks/folders on the bookmark bar. |
| (...skipping 27 matching lines...) Expand all Loading... |
| 80 // Used in chrome/browser/ui/gtk/view_id_util_browsertests.cc | 79 // Used in chrome/browser/ui/gtk/view_id_util_browsertests.cc |
| 81 // If you add new ids, make sure the above test passes. | 80 // If you add new ids, make sure the above test passes. |
| 82 VIEW_ID_PREDEFINED_COUNT, | 81 VIEW_ID_PREDEFINED_COUNT, |
| 83 | 82 |
| 84 // Plus button on location bar. | 83 // Plus button on location bar. |
| 85 VIEW_ID_ACTION_BOX_BUTTON, | 84 VIEW_ID_ACTION_BOX_BUTTON, |
| 86 }; | 85 }; |
| 87 | 86 |
| 88 #endif // CHROME_BROWSER_UI_VIEW_IDS_H_ | 87 #endif // CHROME_BROWSER_UI_VIEW_IDS_H_ |
| 89 | 88 |
| OLD | NEW |