| Index: chrome/browser/chromeos/policy/device_local_account_browsertest.cc
|
| diff --git a/chrome/browser/chromeos/policy/device_local_account_browsertest.cc b/chrome/browser/chromeos/policy/device_local_account_browsertest.cc
|
| index 8d7c527718d5a94778c46f27073296ab0751a5d2..d628acd13b3c74ca690afa13ff6f63c281db6374 100644
|
| --- a/chrome/browser/chromeos/policy/device_local_account_browsertest.cc
|
| +++ b/chrome/browser/chromeos/policy/device_local_account_browsertest.cc
|
| @@ -2,11 +2,13 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include <stddef.h>
|
| +#include "chrome/browser/chromeos/policy/device_local_account.h"
|
|
|
| +#include <stddef.h>
|
| #include <map>
|
| #include <set>
|
| #include <string>
|
| +#include <utility>
|
| #include <vector>
|
|
|
| #include "ash/shell.h"
|
| @@ -58,7 +60,6 @@
|
| #include "chrome/browser/chromeos/login/wizard_controller.h"
|
| #include "chrome/browser/chromeos/policy/browser_policy_connector_chromeos.h"
|
| #include "chrome/browser/chromeos/policy/cloud_external_data_manager_base_test_util.h"
|
| -#include "chrome/browser/chromeos/policy/device_local_account.h"
|
| #include "chrome/browser/chromeos/policy/device_local_account_policy_service.h"
|
| #include "chrome/browser/chromeos/policy/device_policy_builder.h"
|
| #include "chrome/browser/chromeos/policy/device_policy_cros_browser_test.h"
|
| @@ -337,7 +338,7 @@ TestingUpdateManifestProvider::HandleRequest(
|
| http_response->set_code(net::HTTP_OK);
|
| http_response->set_content(content);
|
| http_response->set_content_type("text/xml");
|
| - return http_response.Pass();
|
| + return std::move(http_response);
|
| }
|
|
|
| TestingUpdateManifestProvider::~TestingUpdateManifestProvider() {
|
|
|