| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #pragma once | 10 #pragma once |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 VIEW_ID_FIND_IN_PAGE_TEXT_FIELD, | 55 VIEW_ID_FIND_IN_PAGE_TEXT_FIELD, |
| 56 VIEW_ID_FIND_IN_PAGE, | 56 VIEW_ID_FIND_IN_PAGE, |
| 57 | 57 |
| 58 // Tab Container window. | 58 // Tab Container window. |
| 59 VIEW_ID_TAB_CONTAINER, | 59 VIEW_ID_TAB_CONTAINER, |
| 60 VIEW_ID_TAB_CONTAINER_FOCUS_VIEW, | 60 VIEW_ID_TAB_CONTAINER_FOCUS_VIEW, |
| 61 | 61 |
| 62 // Docked dev tools. | 62 // Docked dev tools. |
| 63 VIEW_ID_DEV_TOOLS_DOCKED, | 63 VIEW_ID_DEV_TOOLS_DOCKED, |
| 64 | 64 |
| 65 // Bottom extension shelf. | |
| 66 VIEW_ID_DEV_EXTENSION_SHELF, | |
| 67 | |
| 68 // The contents split. | 65 // The contents split. |
| 69 VIEW_ID_CONTENTS_SPLIT, | 66 VIEW_ID_CONTENTS_SPLIT, |
| 70 | 67 |
| 71 // The Infobar container. | 68 // The Infobar container. |
| 72 VIEW_ID_INFO_BAR_CONTAINER, | 69 VIEW_ID_INFO_BAR_CONTAINER, |
| 73 | 70 |
| 74 // The Download shelf. | 71 // The Download shelf. |
| 75 VIEW_ID_DOWNLOAD_SHELF, | 72 VIEW_ID_DOWNLOAD_SHELF, |
| 76 | 73 |
| 77 // Used in chrome/browser/gtk/view_id_util_browsertests.cc | 74 // Used in chrome/browser/gtk/view_id_util_browsertests.cc |
| 78 // If you add new ids, make sure the above test passes. | 75 // If you add new ids, make sure the above test passes. |
| 79 VIEW_ID_PREDEFINED_COUNT | 76 VIEW_ID_PREDEFINED_COUNT |
| 80 }; | 77 }; |
| 81 | 78 |
| 82 #endif // CHROME_BROWSER_VIEW_IDS_H_ | 79 #endif // CHROME_BROWSER_VIEW_IDS_H_ |
| OLD | NEW |