| Index: chrome/browser/ui/views/tabs/tab.cc
|
| diff --git a/chrome/browser/ui/views/tabs/tab.cc b/chrome/browser/ui/views/tabs/tab.cc
|
| index 1678a9024cb56d7c14fc638c6a83a7306ac53c75..2f46cd3099746ea7f48495adb27d165079ce0119 100644
|
| --- a/chrome/browser/ui/views/tabs/tab.cc
|
| +++ b/chrome/browser/ui/views/tabs/tab.cc
|
| @@ -5,8 +5,8 @@
|
| #include "chrome/browser/ui/views/tabs/tab.h"
|
|
|
| #include <stddef.h>
|
| -
|
| #include <limits>
|
| +#include <utility>
|
|
|
| #include "base/command_line.h"
|
| #include "base/debug/alias.h"
|
| @@ -608,7 +608,7 @@ void Tab::StartPulse() {
|
| }
|
|
|
| void Tab::StopPulse() {
|
| - StopAndDeleteAnimation(pulse_animation_.Pass());
|
| + StopAndDeleteAnimation(std::move(pulse_animation_));
|
| }
|
|
|
| void Tab::StartPinnedTabTitleAnimation() {
|
| @@ -641,7 +641,7 @@ void Tab::StartPinnedTabTitleAnimation() {
|
| }
|
|
|
| void Tab::StopPinnedTabTitleAnimation() {
|
| - StopAndDeleteAnimation(pinned_title_change_animation_.Pass());
|
| + StopAndDeleteAnimation(std::move(pinned_title_change_animation_));
|
| }
|
|
|
| int Tab::GetWidthOfLargestSelectableRegion() const {
|
|
|