| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_VIEW_IDS_H_ | 8 #ifndef CHROME_BROWSER_VIEW_IDS_H_ |
| 9 #define CHROME_BROWSER_VIEW_IDS_H_ | 9 #define CHROME_BROWSER_VIEW_IDS_H_ |
| 10 | 10 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 VIEW_ID_BOOKMARK_MENU, | 42 VIEW_ID_BOOKMARK_MENU, |
| 43 | 43 |
| 44 // The Bookmark Bar. | 44 // The Bookmark Bar. |
| 45 VIEW_ID_BOOKMARK_BAR, | 45 VIEW_ID_BOOKMARK_BAR, |
| 46 | 46 |
| 47 // Find in page. | 47 // Find in page. |
| 48 VIEW_ID_FIND_IN_PAGE_TEXT_FIELD, | 48 VIEW_ID_FIND_IN_PAGE_TEXT_FIELD, |
| 49 | 49 |
| 50 // Tab Container window. | 50 // Tab Container window. |
| 51 VIEW_ID_TAB_CONTAINER, | 51 VIEW_ID_TAB_CONTAINER, |
| 52 VIEW_ID_TAB_CONTAINER_FOCUS_VIEW, |
| 52 | 53 |
| 53 VIEW_ID_PREDEFINED_COUNT | 54 VIEW_ID_PREDEFINED_COUNT |
| 54 }; | 55 }; |
| 55 | 56 |
| 56 #endif // CHROME_BROWSER_VIEW_IDS_H_ | 57 #endif // CHROME_BROWSER_VIEW_IDS_H_ |
| OLD | NEW |