| Index: chrome/browser/ui/views/profiles/new_avatar_button.cc
|
| diff --git a/chrome/browser/ui/views/profiles/new_avatar_button.cc b/chrome/browser/ui/views/profiles/new_avatar_button.cc
|
| index eefaa5bb04f0c7c841714a38bb9dec698e22179f..8e637bdd440d1c4b5a9c646c420448cf2dd627f3 100644
|
| --- a/chrome/browser/ui/views/profiles/new_avatar_button.cc
|
| +++ b/chrome/browser/ui/views/profiles/new_avatar_button.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "chrome/browser/ui/views/profiles/new_avatar_button.h"
|
|
|
| +#include <utility>
|
| +
|
| #include "base/win/windows_version.h"
|
| #include "build/build_config.h"
|
| #include "chrome/browser/browser_process.h"
|
| @@ -42,7 +44,7 @@ scoped_ptr<views::Border> CreateBorder(const int normal_image_set[],
|
| border->set_insets(gfx::Insets(kTopInset, kLeftRightInset,
|
| kBottomInset, kLeftRightInset));
|
|
|
| - return border.Pass();
|
| + return std::move(border);
|
| }
|
|
|
| } // namespace
|
|
|