Index: net/http/http_auth_handler.h |
diff --git a/net/http/http_auth_handler.h b/net/http/http_auth_handler.h |
index dfb50d43a608ac9de9c32c7c4ff2516efc9c6844..ffd8eaa2f67e0ffe613ab84f53c3474e9c029d30 100644 |
--- a/net/http/http_auth_handler.h |
+++ b/net/http/http_auth_handler.h |
@@ -77,36 +77,24 @@ class NET_EXPORT_PRIVATE HttpAuthHandler { |
std::string* auth_token); |
// The authentication scheme as an enumerated value. |
- HttpAuth::Scheme auth_scheme() const { |
- return auth_scheme_; |
- } |
+ HttpAuth::Scheme auth_scheme() const { return auth_scheme_; } |
// The realm, encoded as UTF-8. This may be empty. |
- const std::string& realm() const { |
- return realm_; |
- } |
+ const std::string& realm() const { return realm_; } |
// The challenge which was issued when creating the handler. |
- const std::string challenge() const { |
- return auth_challenge_; |
- } |
+ const std::string challenge() const { return auth_challenge_; } |
// Numeric rank based on the challenge's security level. Higher |
// numbers are better. Used by HttpAuth::ChooseBestChallenge(). |
- int score() const { |
- return score_; |
- } |
+ int score() const { return score_; } |
- HttpAuth::Target target() const { |
- return target_; |
- } |
+ HttpAuth::Target target() const { return target_; } |
// Returns the proxy or server which issued the authentication challenge |
// that this HttpAuthHandler is handling. The URL includes scheme, host, and |
// port, but does not include path. |
- const GURL& origin() const { |
- return origin_; |
- } |
+ const GURL& origin() const { return origin_; } |
// Returns true if the authentication scheme does not send the username and |
// password in the clear. |