| Index: components/version_ui/version_handler_helper.cc
|
| diff --git a/components/version_ui/version_handler_helper.cc b/components/version_ui/version_handler_helper.cc
|
| index 2a9c2a1c1e13dad4c77079059a9124fde519a405..6d049a7504bdf6a7eacd6f2462791573a63f9ad0 100644
|
| --- a/components/version_ui/version_handler_helper.cc
|
| +++ b/components/version_ui/version_handler_helper.cc
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "components/version_ui/version_handler_helper.h"
|
|
|
| +#include <utility>
|
| #include <vector>
|
|
|
| #include "base/metrics/field_trial.h"
|
| @@ -38,7 +39,7 @@ scoped_ptr<base::Value> GetVariationsList() {
|
| variations_list->Append(new base::StringValue(*it));
|
| }
|
|
|
| - return variations_list.Pass();
|
| + return std::move(variations_list);
|
| }
|
|
|
| } // namespace version_ui
|
|
|