| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 10 #pragma once |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 | 66 |
| 67 // The contents split. | 67 // The contents split. |
| 68 VIEW_ID_CONTENTS_SPLIT, | 68 VIEW_ID_CONTENTS_SPLIT, |
| 69 | 69 |
| 70 // The Infobar container. | 70 // The Infobar container. |
| 71 VIEW_ID_INFO_BAR_CONTAINER, | 71 VIEW_ID_INFO_BAR_CONTAINER, |
| 72 | 72 |
| 73 // The Download shelf. | 73 // The Download shelf. |
| 74 VIEW_ID_DOWNLOAD_SHELF, | 74 VIEW_ID_DOWNLOAD_SHELF, |
| 75 | 75 |
| 76 // The Sidebar container. | |
| 77 VIEW_ID_SIDE_BAR_CONTAINER, | |
| 78 | |
| 79 // The sidebar split. | |
| 80 VIEW_ID_SIDE_BAR_SPLIT, | |
| 81 | |
| 82 // Used in chrome/browser/ui/gtk/view_id_util_browsertests.cc | 76 // Used in chrome/browser/ui/gtk/view_id_util_browsertests.cc |
| 83 // If you add new ids, make sure the above test passes. | 77 // If you add new ids, make sure the above test passes. |
| 84 VIEW_ID_PREDEFINED_COUNT | 78 VIEW_ID_PREDEFINED_COUNT |
| 85 }; | 79 }; |
| 86 | 80 |
| 87 #endif // CHROME_BROWSER_UI_VIEW_IDS_H_ | 81 #endif // CHROME_BROWSER_UI_VIEW_IDS_H_ |
| 88 | 82 |
| OLD | NEW |