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

Unified Diff: chrome/browser/ui/browser_command_controller.cc

Issue 154083008: Remove Tabpose feature on mac, and supporting infrastructure (PaintAtSize) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: try again Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/browser_command_controller.cc
diff --git a/chrome/browser/ui/browser_command_controller.cc b/chrome/browser/ui/browser_command_controller.cc
index 619b5cd769b1797834639396fce497bf9128be1a..b9905383d73b6be55e88e1dc423eb96d0cc401e4 100644
--- a/chrome/browser/ui/browser_command_controller.cc
+++ b/chrome/browser/ui/browser_command_controller.cc
@@ -290,7 +290,6 @@ bool BrowserCommandController::IsReservedCommandOrKey(
command_id == IDC_RESTORE_TAB ||
command_id == IDC_SELECT_NEXT_TAB ||
command_id == IDC_SELECT_PREVIOUS_TAB ||
- command_id == IDC_TABPOSE ||
command_id == IDC_EXIT;
}
@@ -415,9 +414,6 @@ void BrowserCommandController::ExecuteCommandWithDisposition(
base::UserMetricsAction("Accel_SelectPreviousTab"));
SelectPreviousTab(browser_);
break;
- case IDC_TABPOSE:
- OpenTabpose(browser_);
- break;
case IDC_MOVE_TAB_NEXT:
MoveTabNext(browser_);
break;
@@ -1004,7 +1000,6 @@ void BrowserCommandController::InitCommandState() {
IDC_WIN8_DESKTOP_RESTART : IDC_WIN8_METRO_RESTART;
command_updater_.UpdateCommandEnabled(restart_mode, normal_window);
#endif
- command_updater_.UpdateCommandEnabled(IDC_TABPOSE, normal_window);
// Show various bits of UI
command_updater_.UpdateCommandEnabled(IDC_CLEAR_BROWSING_DATA, normal_window);

Powered by Google App Engine
This is Rietveld 408576698