| Index: net/http/http_auth_handler_negotiate.h
|
| diff --git a/net/http/http_auth_handler_negotiate.h b/net/http/http_auth_handler_negotiate.h
|
| index ffe51bbb043800dab07c22d7959b285c3519df84..1d744318946e10ffa7eb7e247380ea034fd51977 100644
|
| --- a/net/http/http_auth_handler_negotiate.h
|
| +++ b/net/http/http_auth_handler_negotiate.h
|
| @@ -6,6 +6,7 @@
|
| #define NET_HTTP_HTTP_AUTH_HANDLER_NEGOTIATE_H_
|
|
|
| #include <string>
|
| +#include <utility>
|
|
|
| #include "build/build_config.h"
|
| #include "net/base/address_list.h"
|
| @@ -55,7 +56,7 @@ class NET_EXPORT_PRIVATE HttpAuthHandlerNegotiate : public HttpAuthHandler {
|
| // Sets the system library to use, thereby assuming ownership of
|
| // |auth_library|.
|
| void set_library(scoped_ptr<AuthLibrary> auth_provider) {
|
| - auth_library_ = auth_provider.Pass();
|
| + auth_library_ = std::move(auth_provider);
|
| }
|
| #endif
|
|
|
|
|