| Index: chrome/browser/policy/policy_browsertest.cc
|
| diff --git a/chrome/browser/policy/policy_browsertest.cc b/chrome/browser/policy/policy_browsertest.cc
|
| index f6c1a1b6e1d6a7f7133df0ab7d373d6ff243650a..70b102de23aecd48bfcd58f32598d516ae1b2f2b 100644
|
| --- a/chrome/browser/policy/policy_browsertest.cc
|
| +++ b/chrome/browser/policy/policy_browsertest.cc
|
| @@ -4,9 +4,9 @@
|
|
|
| #include <stddef.h>
|
| #include <stdint.h>
|
| -
|
| #include <algorithm>
|
| #include <string>
|
| +#include <utility>
|
| #include <vector>
|
|
|
| #include "ash/display/display_manager.h"
|
| @@ -713,7 +713,7 @@ class PolicyTest : public InProcessBrowserTest {
|
| // is tied to the test instead.
|
| chrome_screenshot_grabber->screenshot_grabber()->AddObserver(&observer_);
|
| ash::Shell::GetInstance()->accelerator_controller()->SetScreenshotDelegate(
|
| - chrome_screenshot_grabber.Pass());
|
| + std::move(chrome_screenshot_grabber));
|
|
|
| SetScreenshotPolicy(enabled);
|
| ash::Shell::GetInstance()->accelerator_controller()->PerformActionIfEnabled(
|
|
|