diff options
Diffstat (limited to 'net/http/http_auth_handler_digest.h')
-rw-r--r-- | net/http/http_auth_handler_digest.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/http/http_auth_handler_digest.h b/net/http/http_auth_handler_digest.h index c319f5d..fca77e4 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_; }; |