Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(175)

Side by Side Diff: chrome/browser/ui/view_ids.h

Issue 1169823005: Add sidebar views implementation using ExtensionSystem SidebarManager Base URL: https://chromium.googlesource.com/chromium/src.git@patch-a
Patch Set: Rebased patch set to 1168383002/#ps220001 Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 71
72 // Find in page. 72 // Find in page.
73 VIEW_ID_FIND_IN_PAGE_TEXT_FIELD, 73 VIEW_ID_FIND_IN_PAGE_TEXT_FIELD,
74 74
75 // Tab Container window. 75 // Tab Container window.
76 VIEW_ID_TAB_CONTAINER, 76 VIEW_ID_TAB_CONTAINER,
77 77
78 // Docked dev tools. 78 // Docked dev tools.
79 VIEW_ID_DEV_TOOLS_DOCKED, 79 VIEW_ID_DEV_TOOLS_DOCKED,
80 80
81 // The contents split.
82 VIEW_ID_CONTENTS_SPLIT,
83
84 // The Infobar container. 81 // The Infobar container.
85 VIEW_ID_INFO_BAR_CONTAINER, 82 VIEW_ID_INFO_BAR_CONTAINER,
86 83
87 // The Download shelf. 84 // The Download shelf.
88 VIEW_ID_DOWNLOAD_SHELF, 85 VIEW_ID_DOWNLOAD_SHELF,
89 86
90 // The omnibox icon to do voice-based search. 87 // The omnibox icon to do voice-based search.
91 VIEW_ID_MIC_SEARCH_BUTTON, 88 VIEW_ID_MIC_SEARCH_BUTTON,
92 89
90 // The sidebar container.
91 VIEW_ID_SIDE_BAR_CONTAINER,
92
93 // The sidebar split.
94 VIEW_ID_SIDE_BAR_SPLIT,
95
96 // The sidebar view.
97 VIEW_ID_SIDE_BAR_VIEW,
98
93 // Used in chrome/browser/ui/cocoa/view_id_util_browsertest.mm. 99 // Used in chrome/browser/ui/cocoa/view_id_util_browsertest.mm.
94 // If you add new ids, make sure the above test passes. 100 // If you add new ids, make sure the above test passes.
95 VIEW_ID_PREDEFINED_COUNT, 101 VIEW_ID_PREDEFINED_COUNT,
96 102
97 // Plus button on location bar. 103 // Plus button on location bar.
98 VIEW_ID_ACTION_BOX_BUTTON, 104 VIEW_ID_ACTION_BOX_BUTTON,
99 }; 105 };
100 106
101 #endif // CHROME_BROWSER_UI_VIEW_IDS_H_ 107 #endif // CHROME_BROWSER_UI_VIEW_IDS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698