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

Unified Diff: chrome/browser/ui/cocoa/browser_window_cocoa.mm

Issue 2540523003: Use standardized accelerator-to-shortcut code for new backspace shortcut UI. (Closed)
Patch Set: Created 4 years, 1 month 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/cocoa/browser_window_cocoa.mm
diff --git a/chrome/browser/ui/cocoa/browser_window_cocoa.mm b/chrome/browser/ui/cocoa/browser_window_cocoa.mm
index 8c4984149ee471350c3ed779051cb7e614f97e69..f75bad6ba3693bdc704461a72aa5a30495588a6b 100644
--- a/chrome/browser/ui/cocoa/browser_window_cocoa.mm
+++ b/chrome/browser/ui/cocoa/browser_window_cocoa.mm
@@ -437,9 +437,9 @@ bool BrowserWindowCocoa::IsFullscreenBubbleVisible() const {
return false; // Currently only called from toolkit-views website_settings.
}
-void BrowserWindowCocoa::MaybeShowNewBackShortcutBubble(bool forward) {
+void BrowserWindowCocoa::MaybeShowNewBackShortcutBubble(int command_id) {
[controller_ exclusiveAccessController]->MaybeShowNewBackShortcutBubble(
- forward);
+ command_id);
}
void BrowserWindowCocoa::HideNewBackShortcutBubble() {

Powered by Google App Engine
This is Rietveld 408576698