| Index: chrome/browser/ui/views/toolbar/browser_actions_container.cc
|
| diff --git a/chrome/browser/ui/views/toolbar/browser_actions_container.cc b/chrome/browser/ui/views/toolbar/browser_actions_container.cc
|
| index 6e0ce2644afa36a54f4cd27cab5c0efab0359f33..162c12689842fa78e650745fe71f25d6105609cd 100644
|
| --- a/chrome/browser/ui/views/toolbar/browser_actions_container.cc
|
| +++ b/chrome/browser/ui/views/toolbar/browser_actions_container.cc
|
| @@ -220,8 +220,7 @@ void BrowserActionsContainer::Redraw(bool order_changed) {
|
| }
|
|
|
| void BrowserActionsContainer::ResizeAndAnimate(gfx::Tween::Type tween_type,
|
| - int target_width,
|
| - bool /*suppress_chevron*/) {
|
| + int target_width) {
|
| if (resize_animation_ && !toolbar_actions_bar_->suppress_animation()) {
|
| if (!ShownInsideMenu()) {
|
| // Make sure we don't try to animate to wider than the allowed width.
|
| @@ -242,8 +241,6 @@ void BrowserActionsContainer::ResizeAndAnimate(gfx::Tween::Type tween_type,
|
| }
|
| }
|
|
|
| -void BrowserActionsContainer::SetChevronVisibility(bool visible) {}
|
| -
|
| int BrowserActionsContainer::GetWidth(GetWidthTime get_width_time) const {
|
| return get_width_time == GET_WIDTH_AFTER_ANIMATION &&
|
| animation_target_size_ > 0
|
| @@ -260,10 +257,6 @@ void BrowserActionsContainer::StopAnimating() {
|
| resize_animation_->Reset();
|
| }
|
|
|
| -int BrowserActionsContainer::GetChevronWidth() const {
|
| - return 0;
|
| -}
|
| -
|
| void BrowserActionsContainer::ShowToolbarActionBubble(
|
| std::unique_ptr<ToolbarActionsBarBubbleDelegate> controller) {
|
| // The container shouldn't be asked to show a bubble if it's animating.
|
|
|