69e5304
diff -up chromium-62.0.3202.62/chrome/browser/ui/webui/settings/on_startup_handler.cc.another-rvalue-fix chromium-62.0.3202.62/chrome/browser/ui/webui/settings/on_startup_handler.cc
69e5304
--- chromium-62.0.3202.62/chrome/browser/ui/webui/settings/on_startup_handler.cc.another-rvalue-fix	2017-10-18 10:15:58.855675480 -0400
69e5304
+++ chromium-62.0.3202.62/chrome/browser/ui/webui/settings/on_startup_handler.cc	2017-10-18 10:16:28.925093301 -0400
69e5304
@@ -77,7 +77,7 @@ std::unique_ptr<base::Value> OnStartupHa
69e5304
                    !extensions::ExtensionSystem::Get(profile_)
69e5304
                         ->management_policy()
69e5304
                         ->MustRemainEnabled(ntp_extension, nullptr));
69e5304
-  return dict;
69e5304
+  return std::move(dict);
69e5304
 }
69e5304
 
69e5304
 void OnStartupHandler::HandleGetNtpExtension(const base::ListValue* args) {
69e5304
diff -up chromium-62.0.3202.62/ui/views/animation/ink_drop_host_view.cc.another-rvalue-fix chromium-62.0.3202.62/ui/views/animation/ink_drop_host_view.cc
69e5304
--- chromium-62.0.3202.62/ui/views/animation/ink_drop_host_view.cc.another-rvalue-fix	2017-10-18 10:15:16.408497853 -0400
69e5304
+++ chromium-62.0.3202.62/ui/views/animation/ink_drop_host_view.cc	2017-10-18 10:15:43.793967075 -0400
69e5304
@@ -305,7 +305,7 @@ std::unique_ptr<InkDropImpl> InkDropHost
69e5304
       base::MakeUnique<InkDropImpl>(this, size());
69e5304
   ink_drop->SetAutoHighlightMode(
69e5304
       views::InkDropImpl::AutoHighlightMode::HIDE_ON_RIPPLE);
69e5304
-  return ink_drop;
69e5304
+  return std:move(ink_drop);
69e5304
 }
69e5304
 
69e5304
 std::unique_ptr<InkDropImpl>
69e5304
@@ -314,7 +314,7 @@ InkDropHostView::CreateDefaultFloodFillI
69e5304
       InkDropHostView::CreateDefaultInkDropImpl();
69e5304
   ink_drop->SetAutoHighlightMode(
69e5304
       views::InkDropImpl::AutoHighlightMode::SHOW_ON_RIPPLE);
69e5304
-  return ink_drop;
69e5304
+  return std:move(ink_drop);
69e5304
 }
69e5304
 
69e5304
 }  // namespace views
69e5304
diff -up chromium-62.0.3202.62/ui/views/controls/button/checkbox.cc.another-rvalue-fix chromium-62.0.3202.62/ui/views/controls/button/checkbox.cc
69e5304
--- chromium-62.0.3202.62/ui/views/controls/button/checkbox.cc.another-rvalue-fix	2017-10-18 10:14:18.054627919 -0400
69e5304
+++ chromium-62.0.3202.62/ui/views/controls/button/checkbox.cc	2017-10-18 10:14:42.265159378 -0400
69e5304
@@ -198,7 +198,7 @@ std::unique_ptr<InkDrop> Checkbox::Creat
69e5304
   std::unique_ptr<InkDropImpl> ink_drop = CreateDefaultInkDropImpl();
69e5304
   ink_drop->SetShowHighlightOnHover(false);
69e5304
   ink_drop->SetAutoHighlightMode(InkDropImpl::AutoHighlightMode::NONE);
69e5304
-  return ink_drop;
69e5304
+  return std::move(ink_drop);
69e5304
 }
69e5304
 
69e5304
 std::unique_ptr<InkDropRipple> Checkbox::CreateInkDropRipple() const {