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

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

Issue 2876223003: cocoa: add some tab-manipulation menu items (Closed)
Patch Set: remove top separator Created 3 years, 7 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
« no previous file with comments | « chrome/browser/ui/browser_command_controller.cc ('k') | chrome/browser/ui/browser_commands.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #ifndef CHROME_BROWSER_UI_BROWSER_COMMANDS_H_ 5 #ifndef CHROME_BROWSER_UI_BROWSER_COMMANDS_H_
6 #define CHROME_BROWSER_UI_BROWSER_COMMANDS_H_ 6 #define CHROME_BROWSER_UI_BROWSER_COMMANDS_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 void SelectNextTab(Browser* browser); 83 void SelectNextTab(Browser* browser);
84 void SelectPreviousTab(Browser* browser); 84 void SelectPreviousTab(Browser* browser);
85 void MoveTabNext(Browser* browser); 85 void MoveTabNext(Browser* browser);
86 void MoveTabPrevious(Browser* browser); 86 void MoveTabPrevious(Browser* browser);
87 void SelectNumberedTab(Browser* browser, int index); 87 void SelectNumberedTab(Browser* browser, int index);
88 void SelectLastTab(Browser* browser); 88 void SelectLastTab(Browser* browser);
89 void DuplicateTab(Browser* browser); 89 void DuplicateTab(Browser* browser);
90 bool CanDuplicateTab(const Browser* browser); 90 bool CanDuplicateTab(const Browser* browser);
91 content::WebContents* DuplicateTabAt(Browser* browser, int index); 91 content::WebContents* DuplicateTabAt(Browser* browser, int index);
92 bool CanDuplicateTabAt(const Browser* browser, int index); 92 bool CanDuplicateTabAt(const Browser* browser, int index);
93 void MuteTab(Browser* browser);
94 void PinTab(Browser* browser);
93 void ConvertPopupToTabbedBrowser(Browser* browser); 95 void ConvertPopupToTabbedBrowser(Browser* browser);
94 void Exit(); 96 void Exit();
95 void BookmarkCurrentPageIgnoringExtensionOverrides(Browser* browser); 97 void BookmarkCurrentPageIgnoringExtensionOverrides(Browser* browser);
96 void BookmarkCurrentPageAllowingExtensionOverrides(Browser* browser); 98 void BookmarkCurrentPageAllowingExtensionOverrides(Browser* browser);
97 bool CanBookmarkCurrentPage(const Browser* browser); 99 bool CanBookmarkCurrentPage(const Browser* browser);
98 void BookmarkAllTabs(Browser* browser); 100 void BookmarkAllTabs(Browser* browser);
99 bool CanBookmarkAllTabs(const Browser* browser); 101 bool CanBookmarkAllTabs(const Browser* browser);
100 void SaveCreditCard(Browser* browser); 102 void SaveCreditCard(Browser* browser);
101 void Translate(Browser* browser); 103 void Translate(Browser* browser);
102 void ManagePasswordsForPage(Browser* browser); 104 void ManagePasswordsForPage(Browser* browser);
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 157
156 void ViewSelectedSource(Browser* browser); 158 void ViewSelectedSource(Browser* browser);
157 bool CanViewSource(const Browser* browser); 159 bool CanViewSource(const Browser* browser);
158 160
159 void CreateBookmarkAppFromCurrentWebContents(Browser* browser); 161 void CreateBookmarkAppFromCurrentWebContents(Browser* browser);
160 bool CanCreateBookmarkApp(const Browser* browser); 162 bool CanCreateBookmarkApp(const Browser* browser);
161 163
162 } // namespace chrome 164 } // namespace chrome
163 165
164 #endif // CHROME_BROWSER_UI_BROWSER_COMMANDS_H_ 166 #endif // CHROME_BROWSER_UI_BROWSER_COMMANDS_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/browser_command_controller.cc ('k') | chrome/browser/ui/browser_commands.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698