Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(398)

Unified Diff: net/http/http_auth_handler.h

Issue 266243004: Clang format slam. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698