Uninitialized member vars and inlined constructors.
BUG=None
TEST=None
CID=3810, 8793, 8794
Review URL: http://codereview.chromium.org/3156003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55869 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/net/http/http_auth_handler_digest.h b/net/http/http_auth_handler_digest.h
index 777ac3c..ad70ac1 100644
--- a/net/http/http_auth_handler_digest.h
+++ b/net/http/http_auth_handler_digest.h
@@ -70,9 +70,8 @@
QOP_AUTH_INT = 1 << 1,
};
- explicit HttpAuthHandlerDigest(int nonce_count) : nonce_count_(nonce_count) {}
-
- ~HttpAuthHandlerDigest() {}
+ explicit HttpAuthHandlerDigest(int nonce_count);
+ ~HttpAuthHandlerDigest();
// Parse the challenge, saving the results into this instance.
// Returns true on success.