| Index: chrome/browser/ui/webui/system_info_ui.cc
|
| diff --git a/chrome/browser/ui/webui/system_info_ui.cc b/chrome/browser/ui/webui/system_info_ui.cc
|
| index 3253a65631e1996242517e12e404f3cee8652830..ca636a1a334202ec30002e03252403f9271b6f69 100644
|
| --- a/chrome/browser/ui/webui/system_info_ui.cc
|
| +++ b/chrome/browser/ui/webui/system_info_ui.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "chrome/browser/ui/webui/system_info_ui.h"
|
|
|
| +#include <utility>
|
| +
|
| #include "base/bind.h"
|
| #include "base/bind_helpers.h"
|
| #include "base/macros.h"
|
| @@ -117,7 +119,7 @@ void SystemInfoUIHTMLSource::StartDataRequest(
|
|
|
| void SystemInfoUIHTMLSource::SysInfoComplete(
|
| scoped_ptr<SystemLogsResponse> sys_info) {
|
| - response_ = sys_info.Pass();
|
| + response_ = std::move(sys_info);
|
| RequestComplete();
|
| }
|
|
|
|
|