| Index: ui/views/controls/combobox/combobox.cc
|
| diff --git a/ui/views/controls/combobox/combobox.cc b/ui/views/controls/combobox/combobox.cc
|
| index 2074b0ef16c3899e3e2d8f4426a0e15438e5fdd3..c03b85d31d15e242dce1d4605a9e81a27ec1d09b 100644
|
| --- a/ui/views/controls/combobox/combobox.cc
|
| +++ b/ui/views/controls/combobox/combobox.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "ui/views/controls/combobox/combobox.h"
|
|
|
| +#include <utility>
|
| +
|
| #include "base/logging.h"
|
| #include "ui/accessibility/ax_view_state.h"
|
| #include "ui/base/ime/input_method.h"
|
| @@ -687,7 +689,7 @@ void Combobox::UpdateBorder() {
|
| border->SetInsets(5, 10, 5, 10);
|
| if (invalid_)
|
| border->SetColor(gfx::kGoogleRed700);
|
| - SetBorder(border.Pass());
|
| + SetBorder(std::move(border));
|
| }
|
|
|
| void Combobox::AdjustBoundsForRTLUI(gfx::Rect* rect) const {
|
|
|