| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 VIEW_ID_TRANSLATE_BUTTON, | 59 VIEW_ID_TRANSLATE_BUTTON, |
| 60 | 60 |
| 61 // The Bookmark Bar. | 61 // The Bookmark Bar. |
| 62 VIEW_ID_BOOKMARK_BAR, | 62 VIEW_ID_BOOKMARK_BAR, |
| 63 VIEW_ID_OTHER_BOOKMARKS, | 63 VIEW_ID_OTHER_BOOKMARKS, |
| 64 // Used for bookmarks/folders on the bookmark bar. | 64 // Used for bookmarks/folders on the bookmark bar. |
| 65 VIEW_ID_BOOKMARK_BAR_ELEMENT, | 65 VIEW_ID_BOOKMARK_BAR_ELEMENT, |
| 66 | 66 |
| 67 // Find in page. | 67 // Find in page. |
| 68 VIEW_ID_FIND_IN_PAGE_TEXT_FIELD, | 68 VIEW_ID_FIND_IN_PAGE_TEXT_FIELD, |
| 69 VIEW_ID_FIND_IN_PAGE, | |
| 70 | 69 |
| 71 // Tab Container window. | 70 // Tab Container window. |
| 72 VIEW_ID_TAB_CONTAINER, | 71 VIEW_ID_TAB_CONTAINER, |
| 73 | 72 |
| 74 // Docked dev tools. | 73 // Docked dev tools. |
| 75 VIEW_ID_DEV_TOOLS_DOCKED, | 74 VIEW_ID_DEV_TOOLS_DOCKED, |
| 76 | 75 |
| 77 // The contents split. | 76 // The contents split. |
| 78 VIEW_ID_CONTENTS_SPLIT, | 77 VIEW_ID_CONTENTS_SPLIT, |
| 79 | 78 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 100 | 99 |
| 101 // Used in chrome/browser/ui/gtk/view_id_util_browsertest.cc | 100 // Used in chrome/browser/ui/gtk/view_id_util_browsertest.cc |
| 102 // If you add new ids, make sure the above test passes. | 101 // If you add new ids, make sure the above test passes. |
| 103 VIEW_ID_PREDEFINED_COUNT, | 102 VIEW_ID_PREDEFINED_COUNT, |
| 104 | 103 |
| 105 // Plus button on location bar. | 104 // Plus button on location bar. |
| 106 VIEW_ID_ACTION_BOX_BUTTON, | 105 VIEW_ID_ACTION_BOX_BUTTON, |
| 107 }; | 106 }; |
| 108 | 107 |
| 109 #endif // CHROME_BROWSER_UI_VIEW_IDS_H_ | 108 #endif // CHROME_BROWSER_UI_VIEW_IDS_H_ |
| OLD | NEW |