| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 | 81 |
| 82 // The contents split. | 82 // The contents split. |
| 83 VIEW_ID_CONTENTS_SPLIT, | 83 VIEW_ID_CONTENTS_SPLIT, |
| 84 | 84 |
| 85 // The Infobar container. | 85 // The Infobar container. |
| 86 VIEW_ID_INFO_BAR_CONTAINER, | 86 VIEW_ID_INFO_BAR_CONTAINER, |
| 87 | 87 |
| 88 // The Download shelf. | 88 // The Download shelf. |
| 89 VIEW_ID_DOWNLOAD_SHELF, | 89 VIEW_ID_DOWNLOAD_SHELF, |
| 90 | 90 |
| 91 // The omnibox icon to do voice-based search. | |
| 92 VIEW_ID_MIC_SEARCH_BUTTON, | |
| 93 | |
| 94 // Used in chrome/browser/ui/cocoa/view_id_util_browsertest.mm. | 91 // Used in chrome/browser/ui/cocoa/view_id_util_browsertest.mm. |
| 95 // If you add new ids, make sure the above test passes. | 92 // If you add new ids, make sure the above test passes. |
| 96 VIEW_ID_PREDEFINED_COUNT, | 93 VIEW_ID_PREDEFINED_COUNT, |
| 97 | 94 |
| 98 // Plus button on location bar. | 95 // Plus button on location bar. |
| 99 VIEW_ID_ACTION_BOX_BUTTON, | 96 VIEW_ID_ACTION_BOX_BUTTON, |
| 100 }; | 97 }; |
| 101 | 98 |
| 102 #endif // CHROME_BROWSER_UI_VIEW_IDS_H_ | 99 #endif // CHROME_BROWSER_UI_VIEW_IDS_H_ |
| OLD | NEW |