| Index: net/http/http_auth_handler_digest.h
|
| diff --git a/net/http/http_auth_handler_digest.h b/net/http/http_auth_handler_digest.h
|
| index c319f5dca8ca5ce9e384a9a8439e5a72ce06fbf4..fca77e4511682e34c1bd72bf67f35353ad70a0c2 100644
|
| --- a/net/http/http_auth_handler_digest.h
|
| +++ b/net/http/http_auth_handler_digest.h
|
| @@ -62,6 +62,9 @@ class HttpAuthHandlerDigest : public HttpAuthHandler {
|
| Factory();
|
| virtual ~Factory();
|
|
|
| + // This factory owns the passed in |nonce_generator|.
|
| + void set_nonce_generator(const NonceGenerator* nonce_generator);
|
| +
|
| virtual int CreateAuthHandler(HttpAuth::ChallengeTokenizer* challenge,
|
| HttpAuth::Target target,
|
| const GURL& origin,
|
| @@ -70,9 +73,6 @@ class HttpAuthHandlerDigest : public HttpAuthHandler {
|
| const BoundNetLog& net_log,
|
| scoped_ptr<HttpAuthHandler>* handler);
|
|
|
| - // This factory owns the passed in |nonce_generator|.
|
| - void set_nonce_generator(const NonceGenerator* nonce_generator);
|
| -
|
| private:
|
| scoped_ptr<const NonceGenerator> nonce_generator_;
|
| };
|
|
|