| Index: chrome/renderer/safe_browsing/phishing_classifier_browsertest.cc
|
| diff --git a/chrome/renderer/safe_browsing/phishing_classifier_browsertest.cc b/chrome/renderer/safe_browsing/phishing_classifier_browsertest.cc
|
| index 02b4f7f8d66f4ef7737a26c107a37332ddd9c795..11d4126dec64e8e9cd1ba4e2f1f597356fdc93ec 100644
|
| --- a/chrome/renderer/safe_browsing/phishing_classifier_browsertest.cc
|
| +++ b/chrome/renderer/safe_browsing/phishing_classifier_browsertest.cc
|
| @@ -5,6 +5,7 @@
|
| #include "chrome/renderer/safe_browsing/phishing_classifier.h"
|
|
|
| #include <string>
|
| +#include <utility>
|
|
|
| #include "base/bind.h"
|
| #include "base/command_line.h"
|
| @@ -199,7 +200,7 @@ class PhishingClassifierTest : public InProcessBrowserTest {
|
| http_response->set_code(net::HTTP_OK);
|
| http_response->set_content_type("text/html");
|
| http_response->set_content(response_content_);
|
| - return http_response.Pass();
|
| + return std::move(http_response);
|
| }
|
|
|
| std::string response_content_;
|
|
|