| Index: chrome/browser/ui/cocoa/browser/exclusive_access_controller_views.mm
|
| diff --git a/chrome/browser/ui/cocoa/browser/exclusive_access_controller_views.mm b/chrome/browser/ui/cocoa/browser/exclusive_access_controller_views.mm
|
| index cbe83eba2422f154f8ba0a903fff38348e742f9b..bc454b8d5fd4a1dc762231c189abbc4b0b960235 100644
|
| --- a/chrome/browser/ui/cocoa/browser/exclusive_access_controller_views.mm
|
| +++ b/chrome/browser/ui/cocoa/browser/exclusive_access_controller_views.mm
|
| @@ -40,7 +40,7 @@ void ExclusiveAccessController::Show() {
|
| views_bubble_.reset(new ExclusiveAccessBubbleViews(this, url_, bubble_type_));
|
| }
|
|
|
| -void ExclusiveAccessController::MaybeShowNewBackShortcutBubble(bool forward) {
|
| +void ExclusiveAccessController::MaybeShowNewBackShortcutBubble(int command_id) {
|
| if (!new_back_shortcut_bubble_ || !new_back_shortcut_bubble_->IsVisible()) {
|
| // Show the bubble at most five times.
|
| PrefService* prefs = GetProfile()->GetPrefs();
|
| @@ -67,7 +67,7 @@ void ExclusiveAccessController::MaybeShowNewBackShortcutBubble(bool forward) {
|
| last_back_shortcut_press_time_ = base::TimeTicks();
|
| }
|
|
|
| - new_back_shortcut_bubble_->UpdateContent(forward);
|
| + new_back_shortcut_bubble_->UpdateContent(command_id);
|
| }
|
|
|
| void ExclusiveAccessController::HideNewBackShortcutBubble() {
|
|
|